Skip to content

Commit

Permalink
fix more misspellings
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Cooper committed Jan 21, 2016
1 parent dff2d9b commit dfaea26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parse/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func OverwriteStructTag(tag *ast.BasicLit, tagName string, offset *int, data []b
return data
}

// Checks if a fiels is an explicitly ignored field
// Checks if a field is an explicitly ignored field
func IsIgnoredField(s string) bool {
for _, f := range flags.IgnoredFields {
if s == f {
Expand Down
2 changes: 1 addition & 1 deletion sterrors/sterrors.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ func MutuallyExclusiveParameters(p, p2 string) error {
return fmt.Errorf("Mutually exclusive parameters provided: %s and %s", p, p2)
}

// Print a string depending on verbosity
// Print a string depending on verbosity... should be in a debug package?
func Printf(s string, args ...interface{}) {
if Verbose {
fmt.Printf(s, args...)
Expand Down

0 comments on commit dfaea26

Please sign in to comment.