From f6def13cb3821ff75279835b081d282e36992aba Mon Sep 17 00:00:00 2001 From: Cory Becker Date: Fri, 8 Dec 2017 15:37:20 -0600 Subject: [PATCH] Small grammar change "For it is not exist" to "because it does not exist" --- ios/RNFetchBlob/RNFetchBlob.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/RNFetchBlob/RNFetchBlob.m b/ios/RNFetchBlob/RNFetchBlob.m index 246d6707c..650d49b82 100644 --- a/ios/RNFetchBlob/RNFetchBlob.m +++ b/ios/RNFetchBlob/RNFetchBlob.m @@ -298,7 +298,7 @@ - (NSDictionary *)constantsToExport BOOL isDir = nil; exist = [fm fileExistsAtPath:path isDirectory:&isDir]; if(exist == NO || isDir == NO) { - callback(@[[NSString stringWithFormat:@"failed to list path `%@` for it is not exist or it is not a folder", path]]); + callback(@[[NSString stringWithFormat:@"failed to list path `%@` because it does not exist or it is not a folder", path]]); return ; } NSError * error = nil;