summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJean-Christophe Bohin <jc@bohin.net>2014-08-07 22:43:59 +0200
committerJean-Christophe Bohin <jc@bohin.net>2014-08-07 22:43:59 +0200
commit26166afc65772f31b4f189124019d9df85bbbadf (patch)
treeceed5e2018c91d426d7c255e7d794db38613d675
parentcfa26f23fd4f65896f01df2997f64c5ca184f484 (diff)
Fixed style
Didn't uppercased 'range' in the beginning of the sentence since it's a language keyword.
-rw-r--r--go.html.markdown4
1 files 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)