fixup comment typo

This commit is contained in:
Matt Hartzler 2014-10-16 09:53:03 -05:00
parent 25719dbfed
commit f41fb6a9c4

View File

@ -29,7 +29,7 @@ type Object struct {
Next *Object Next *Object
} }
// GoStrig is an implementation of the GoStringer interface. // GoString is an implementation of the GoStringer interface.
func (o *Object) GoString() string { func (o *Object) GoString() string {
return fmt.Sprintf("*%#v", *o) return fmt.Sprintf("*%#v", *o)
} }