mirror of
https://github.com/teivah/100-go-mistakes.git
synced 2026-06-26 11:26:56 +08:00
Fix link
This commit is contained in:
parent
5e5ebc1ecd
commit
324d2717f3
1 changed files with 1 additions and 1 deletions
|
|
@ -475,7 +475,7 @@ When using slicing, we must remember that we can face a situation leading to uni
|
||||||
|
|
||||||
`s[low:high:max]` (full slice expression): This statement creates a slice similar to the one created with `s[low:high]`, except that the resulting slice’s capacity is equal to `max - low`.
|
`s[low:high:max]` (full slice expression): This statement creates a slice similar to the one created with `s[low:high]`, except that the resulting slice’s capacity is equal to `max - low`.
|
||||||
|
|
||||||
[Source code](https://github.com/teivah/100-go-mistakes/tree/master/src/03-data-types/25-slice-append/main.go)
|
[Source code](https://github.com/teivah/100-go-mistakes/tree/master/src/03-data-types/25-slice-append/25-slice-append.go)
|
||||||
|
|
||||||
### Slices and memory leaks (#26)
|
### Slices and memory leaks (#26)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue