slightly better english grammer and makes it easier to understand which is the prefered method

Toby Allen 2016-10-14 21:59:05 +01:00
parent cd35be262b
commit 771f1c7c76

@ -53,11 +53,11 @@ and so on.
## Declaring Empty Slices
When declaring a slice, prefer
When declaring a slice, use
```go
var t []string
```
to
rather than
```go
t := []string{}
```