diff --git a/field.go b/field.go index 358a071..4022310 100644 --- a/field.go +++ b/field.go @@ -57,8 +57,8 @@ func (f *Field) Field(name string) *Field { } // Field returns the field from a nested struct. The boolean returns true if -// the field was not found. It panics if the nested struct is not exported or -// if the field was not found. +// the field was found. It panics if the nested struct is not exported or if +// the field was not found. func (f *Field) FieldOk(name string) (*Field, bool) { v := strctVal(f.value.Interface()) t := v.Type()