From 26166afc65772f31b4f189124019d9df85bbbadf Mon Sep 17 00:00:00 2001 From: Jean-Christophe Bohin Date: Thu, 7 Aug 2014 22:43:59 +0200 Subject: [PATCH] Fixed style Didn't uppercased 'range' in the beginning of the sentence since it's a language keyword. --- go.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go.html.markdown b/go.html.markdown index 77961524..02ea280d 100644 --- a/go.html.markdown +++ b/go.html.markdown @@ -178,8 +178,8 @@ func learnFlowControl() { continue // Unreached. } - // you can use range to iterate over an array, a slice, a string, a map, or a channel. - // range returns one (channel) or two values (array, slice, string and map) + // You can use range to iterate over an array, a slice, a string, a map, or a channel. + // range returns one (channel) or two values (array, slice, string and map). for key, value := range map[string]int{"one": 1, "two": 2, "three": 3} { // for each pair in the map, print key and value fmt.Printf("key=%s, value=%d\n", key, value)