Skip to content

Commit

Permalink
updating error message
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasehlert committed Sep 22, 2023
1 parent 1fbd277 commit b33e829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NullSupport.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (s *NullString) Scan(value interface{}) error {
}
strVal, ok := value.(string)
if !ok {
return errors.New("Column is not a string")
return errors.New("Value is not a string")
}
*s = NullString(strVal)
return nil
Expand Down

0 comments on commit b33e829

Please sign in to comment.