From 837933458a72fd5085747e41e68793b26d3b38a5 Mon Sep 17 00:00:00 2001 From: Kamron Batman Date: Wed, 4 May 2016 17:19:15 -0700 Subject: [PATCH] [Typo] Fixes a typo in field.go Removes an extra 'of' in field.go --- field.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/field.go b/field.go index 566f549..c803d5c 100644 --- a/field.go +++ b/field.go @@ -25,7 +25,7 @@ func (f *Field) Tag(key string) string { 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. func (f *Field) Value() interface{} { return f.value.Interface()