From 76804c30979c1b2b96e5fbf6ea1ee079f6fa970c Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Wed, 24 Oct 2012 09:51:39 -0400 Subject: [PATCH] less --- examples/structs/structs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)