Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit 03aeccf

Browse files
jixinchigaul
authored andcommitted
fix grammar error in sentence from contains to contain
1 parent b0819e0 commit 03aeccf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apis/filesystem/src/main/java/org/jclouds/filesystem/predicates/validators/internal/FilesystemBlobKeyValidatorImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public void validate(String name) throws IllegalArgumentException {
3939
if (name.startsWith("\\") || name.startsWith("/"))
4040
throw new IllegalArgumentException("Blob key '" + name + "' cannot start with \\ or /");
4141
if (name.contains("../"))
42-
throw new IllegalArgumentException("Blob key '" + name + "' cannot contains ../");
42+
throw new IllegalArgumentException("Blob key '" + name + "' cannot contain ../");
4343
}
4444

4545
}

0 commit comments

Comments
 (0)