Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion builtins.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ func regex(v interface{}, param string) error {
}

if !re.MatchString(s) {
return ErrRegexp
return TextErr{errors.New(fmt.Sprintf("regular expression mismatch - value: '%s', expected pattern: '%s'", s, param))}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you could use fmt.Errorf instead of error.New(fmt.Sprintf(...

}
return nil
}
Expand Down