I think there should be a colon ' : '

Andrew Field 2021-05-26 20:08:09 +03:00
parent 5e597f4936
commit f6920aaaf8

@ -9,7 +9,7 @@ a = append(a, b...)
#### Copy
```go
b = make([]T, len(a))
b := make([]T, len(a))
copy(b, a)
// These two are often a little slower than the above one,