Update error strings (start with lowercase letters)

This commit is contained in:
Zac Bergquist
2015-06-07 20:49:17 -04:00
parent 20b6e971c0
commit 41e1f1ffa5
12 changed files with 32 additions and 32 deletions

View File

@ -83,7 +83,7 @@ func NewRegexpRule(base, pattern, to string, ext []string) (*RegexpRule, error)
if len(v) < 2 || (len(v) < 3 && v[0] == '!') {
// check if no extension is specified
if v != "/" && v != "!/" {
return nil, fmt.Errorf("Invalid extension %v", v)
return nil, fmt.Errorf("invalid extension %v", v)
}
}
}