Skip to content

Commit 27ae8b0

Browse files
authored
Correct typo in error message (#322)
1 parent ad4c48e commit 27ae8b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

get_s3.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ func (g *S3Getter) parseUrl(u *url.URL) (region, bucket, path, version string, c
261261
} else {
262262
pathParts := strings.SplitN(u.Path, "/", 3)
263263
if len(pathParts) != 3 {
264-
err = fmt.Errorf("URL is not a valid S3 complaint URL")
264+
err = fmt.Errorf("URL is not a valid S3 compliant URL")
265265
return
266266
}
267267
bucket = pathParts[1]

0 commit comments

Comments
 (0)