diff --git a/examples/structs/structs.go b/examples/structs/structs.go index bb7c134..9345550 100644 --- a/examples/structs/structs.go +++ b/examples/structs/structs.go @@ -31,7 +31,7 @@ func main() { fmt.Println(s.name) // You can also use dots with struct pointers - the - // pointer will be automatically dereferenced. + // pointers are automatically dereferenced. sp := &s fmt.Println(sp.age)