summaryrefslogtreecommitdiffhomepage
path: root/go.html.markdown
diff options
context:
space:
mode:
authorJean-Christophe Bohin <jc@bohin.net>2014-08-07 22:37:52 +0200
committerJean-Christophe Bohin <jc@bohin.net>2014-08-07 22:37:52 +0200
commitc0d49cdb88a41ecea12cc98ca8ee04956b9c0d7b (patch)
tree257f51984bd77774b971b590094b99da42b20ac5 /go.html.markdown
parent0078b03707eeccf50e5bb1d7230e88b4ce3d36be (diff)
Fixing missing space and dot.
Diffstat (limited to 'go.html.markdown')
-rw-r--r--go.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/go.html.markdown b/go.html.markdown
index 6c4d88bd..5247ecf8 100644
--- a/go.html.markdown
+++ b/go.html.markdown
@@ -93,7 +93,7 @@ can include line breaks.` // Same string type.
// Arrays have size fixed at compile time.
var a4 [4]int // An array of 4 ints, initialized to all 0.
a3 := [...]int{3, 1, 5} // An array initialzed with a fixed size of three
- //elements, with values 3,1, and 5
+ // elements, with values 3, 1, and 5.
// Slices have dynamic size. Arrays and slices each have advantages
// but use cases for slices are much more common.