This commit is contained in:
matsuyoshi30 2023-09-18 23:41:51 +09:00
parent 5e5ebc1ecd
commit 324d2717f3
No known key found for this signature in database
GPG key ID: 698E5C168E4A5B87

View file

@ -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 slices 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)