Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
m-szalik committed Jul 24, 2024
1 parent 4837c73 commit 43e6163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion converters.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func ParseBool(str string) (bool, error) {
}

// ParseValue - converts string to one of int64, flot64, string, bool, nil.
// If impossible to covert the same string is returned.
// If impossible to convert, the same string is returned.
func ParseValue(str string) interface{} {
if b, err := ParseBool(str); err == nil {
return b
Expand Down

0 comments on commit 43e6163

Please sign in to comment.