Merge pull request #16 from hartzler/typo

fixup comment typo
This commit is contained in:
Mitchell Hashimoto 2014-10-16 07:54:55 -07:00
commit 0998ab58fc

View File

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