Wording: change repo to repository

This commit is contained in:
Lorenz Bausch 2022-05-07 22:23:59 +02:00
parent 98a3125ce4
commit d6e3c7f28e
No known key found for this signature in database
GPG key ID: FF6F200261C01807
10 changed files with 21 additions and 21 deletions

View file

@ -101,7 +101,7 @@ func Parse(s string) (u Location, err error) {
// if s is not a path or contains ":", it's ambiguous
if !isPath(s) && strings.ContainsRune(s, ':') {
return Location{}, errors.New("invalid backend\nIf the repo is in a local directory, you need to add a `local:` prefix")
return Location{}, errors.New("invalid backend\nIf the repository is in a local directory, you need to add a `local:` prefix")
}
u.Scheme = "local"