aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2009-01-20 12:44:44 +0000
committerJohannes Schickel2009-01-20 12:44:44 +0000
commitcd952a7c2790725a495a0e1ff4c4b9b164dccd40 (patch)
treea186b0ed54402adda404f8179ac4929c3169c53b
parentc0cd121ffda81d2aa8a101f5781e765541c87ae4 (diff)
downloadscummvm-rg350-cd952a7c2790725a495a0e1ff4c4b9b164dccd40.tar.gz
scummvm-rg350-cd952a7c2790725a495a0e1ff4c4b9b164dccd40.tar.bz2
scummvm-rg350-cd952a7c2790725a495a0e1ff4c4b9b164dccd40.zip
Whoops it seems the comment used "backslashes" instead of "slashes" in other places too.
svn-id: r35949
-rw-r--r--common/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/fs.h b/common/fs.h
index 6a0b6d07e7..d530cbae4f 100644
--- a/common/fs.h
+++ b/common/fs.h
@@ -238,7 +238,7 @@ public:
* FSDirectory can represent a single directory, or a tree with specified depth,
* depending on the value passed to the 'depth' parameter in the constructors.
* Filenames are cached with their relative path, with elements separated by
- * backslashes, e.g.:
+ * slashes, e.g.:
*
* c:\my\data\file.ext
*
@@ -255,7 +255,7 @@ public:
* Client code can customize cache by using the constructors with the 'prefix'
* parameter. In this case, the prefix is prepended to each entry in the cache,
* and effectively treated as a 'virtual' parent subdirectory. FSDirectory adds
- * a trailing backslash to prefix if needed. Following on with the previous example
+ * a trailing slash to prefix if needed. Following on with the previous example
* and using 'your' as prefix, the cache entry would have been 'your/data/file.ext'.
*
*/