From f41fb6a9c4981b61850adf352fb1a820ab958f98 Mon Sep 17 00:00:00 2001 From: Matt Hartzler Date: Thu, 16 Oct 2014 09:53:03 -0500 Subject: [PATCH] fixup comment typo --- hcl/object.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hcl/object.go b/hcl/object.go index 6f1d9aa..6f89661 100644 --- a/hcl/object.go +++ b/hcl/object.go @@ -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) }