[Typo] Fixes a typo in field.go

Removes an extra 'of' in field.go
This commit is contained in:
Kamron Batman 2016-05-04 17:19:15 -07:00
parent 73c4e3dc02
commit 837933458a

View File

@ -25,7 +25,7 @@ func (f *Field) Tag(key string) string {
return f.field.Tag.Get(key) return f.field.Tag.Get(key)
} }
// Value returns the underlying value of of the field. It panics if the field // Value returns the underlying value of the field. It panics if the field
// is not exported. // is not exported.
func (f *Field) Value() interface{} { func (f *Field) Value() interface{} {
return f.value.Interface() return f.value.Interface()