diff options
author | Andre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org> | 2017-08-23 01:42:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-23 01:42:45 +0300 |
commit | 951d71e6c1fec237b8b454272a8d45dc74df2515 (patch) | |
tree | 868fa1b2e44df692a400887a5827d060f61fd2a3 | |
parent | cb6a9d0475aed064aaff06f2b364fb87c8b56f31 (diff) | |
parent | cf976f3fa7d3863a3cc9cd8726379ec20319002d (diff) |
Merge pull request #2820 from a2/patch-1
[go/en] Fix typo in Go comment
-rw-r--r-- | go.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go.html.markdown b/go.html.markdown index 50692f9c..e5263cf6 100644 --- a/go.html.markdown +++ b/go.html.markdown @@ -99,7 +99,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. - a5 := [...]int{3, 1, 5, 10, 100} // An array initialized with a fixed size of fize + a5 := [...]int{3, 1, 5, 10, 100} // An array initialized with a fixed size of five // elements, with values 3, 1, 5, 10, and 100. // Slices have dynamic size. Arrays and slices each have advantages |