Browse Source

Typo in a comment

Source commit: cac29f8908a0b1f2cf240c7188ed8d30fb3a68ca
Martin Prikryl 4 years ago
parent
commit
251e4c7e1b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      source/core/WebDAVFileSystem.cpp

+ 1 - 1
source/core/WebDAVFileSystem.cpp

@@ -943,7 +943,7 @@ void __fastcall TWebDAVFileSystem::ParsePropResultSet(TRemoteFile * File,
     // In *file* PROPFIND response, the # (and other symbols like comma or plus) is not escaped at all
     // (while in directory listing, they are caret-escaped),
     // so if we see one in the display name, take the name from there.
-    // * and % won't help, as OneDrive seem to have bug with % as the end of the filename,
+    // * and % won't help, as OneDrive seem to have bug with % at the end of the filename,
     // and the * (and others) is removed from file names.
     if (FOneDrive && (ContainsText(File->FileName, L"^") || (wcspbrk(File->DisplayName.c_str(), L"&,+#[]%*") != NULL)))
     {