This is an automated email from the ASF dual-hosted git repository.

gaul pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jclouds.git

commit 03aeccffdf89c247996c9c0fe90efe52af97c037
Author: jixinchi <[email protected]>
AuthorDate: Mon Apr 8 10:10:57 2024 +0800

    fix grammar error in sentence from contains to contain
---
 .../predicates/validators/internal/FilesystemBlobKeyValidatorImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/apis/filesystem/src/main/java/org/jclouds/filesystem/predicates/validators/internal/FilesystemBlobKeyValidatorImpl.java
 
b/apis/filesystem/src/main/java/org/jclouds/filesystem/predicates/validators/internal/FilesystemBlobKeyValidatorImpl.java
index 60a5721113..563968edcc 100644
--- 
a/apis/filesystem/src/main/java/org/jclouds/filesystem/predicates/validators/internal/FilesystemBlobKeyValidatorImpl.java
+++ 
b/apis/filesystem/src/main/java/org/jclouds/filesystem/predicates/validators/internal/FilesystemBlobKeyValidatorImpl.java
@@ -39,7 +39,7 @@ public class FilesystemBlobKeyValidatorImpl extends 
FilesystemBlobKeyValidator {
         if (name.startsWith("\\") || name.startsWith("/"))
             throw new IllegalArgumentException("Blob key '" + name + "' cannot 
start with \\ or /");
         if (name.contains("../"))
-            throw new IllegalArgumentException("Blob key '" + name + "' cannot 
contains ../");
+            throw new IllegalArgumentException("Blob key '" + name + "' cannot 
contain ../");
     }
 
 }

Reply via email to