doc: rename field `default` to `init` for array

pull/4893/head
sudo-nice 2020-05-14 11:00:13 +03:00 committed by GitHub
parent 70b76a8e31
commit b233c24d19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ names = [] // The array is now empty
users := []User{}
// We can also preallocate a certain amount of elements.
ids := []int{ len: 50, default: 0 } // This creates an array with 50 zeros
ids := []int{ len: 50, init: 0 } // This creates an array with 50 zeros
```
The type of an array is determined by the first element: `[1, 2, 3]` is an array of ints (`[]int`).