Minor spelling fix

alfa -> alpha.
This commit is contained in:
mattlamb99 2021-07-25 10:24:22 +12:00 committed by Alessandro Ros
parent c3c643c602
commit 0a2764ed05

View file

@ -58,7 +58,7 @@ func CheckPathName(name string) error {
}
if !rePathName.MatchString(name) {
return fmt.Errorf("can contain only alfanumeric characters, underscore, dot, tilde, minus or slash")
return fmt.Errorf("can contain only alphanumeric characters, underscore, dot, tilde, minus or slash")
}
return nil