We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebf56d3 commit 2b2a140Copy full SHA for 2b2a140
README.md
@@ -81,8 +81,8 @@ n := s.Names() // Get a []string
81
f := s.Field(name) // Get a *Field based on the given field name
82
f, ok := s.FieldOk(name) // Get a *Field based on the given field name
83
n := s.Name() // Get the struct name
84
-h := s.HasZero() // Check if any field is initialized
85
-z := s.IsZero() // Check if all fields are initialized
+h := s.HasZero() // Check if any field is uninitialized
+z := s.IsZero() // Check if all fields are uninitialized
86
```
87
88
### Field methods
0 commit comments