From d285456bdb5eda554c08149ac95ae4a7388275f1 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Fri, 22 Jan 2016 21:29:07 -0800 Subject: [PATCH] Update field.go --- field.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/field.go b/field.go index ad7ca13..566f549 100644 --- a/field.go +++ b/field.go @@ -60,7 +60,7 @@ func (f *Field) Kind() reflect.Kind { return f.value.Kind() } -// Set sets the field to given value v. It retuns an error if the field is not +// Set sets the field to given value v. It returns an error if the field is not // settable (not addressable or not exported) or if the given value's type // doesn't match the fields type. func (f *Field) Set(val interface{}) error {