doc: rename field `default` to `init` for array
parent
70b76a8e31
commit
b233c24d19
|
@ -377,7 +377,7 @@ names = [] // The array is now empty
|
||||||
users := []User{}
|
users := []User{}
|
||||||
|
|
||||||
// We can also preallocate a certain amount of elements.
|
// 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`).
|
The type of an array is determined by the first element: `[1, 2, 3]` is an array of ints (`[]int`).
|
||||||
|
|
Loading…
Reference in New Issue