瀏覽代碼

Merge pull request #2163 from richardkchapman/gitinclude

FEATURE - hook-based git file reading

Reviewed-by: Gavin Halliday <ghalliday@hpccsystems.com>
Gavin Halliday 13 年之前
父節點
當前提交
5228f4e5e0
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      system/jlib/jfile.hpp

+ 1 - 1
system/jlib/jfile.hpp

@@ -507,7 +507,7 @@ inline StringBuffer &removeTrailingPathSepChar(StringBuffer &path)
     {
 #ifdef _WIN32
     // In addition to not removing / if it's the only char in the path, you should not remove it the path
-    // is of the form c:\
+    // is of the form "c:\"
         if (path.length()>3 || path.charAt(1) != ':')
 #endif
             path.remove(path.length()-1, 1);