summaryrefslogtreecommitdiffstats
path: root/src/common/fs/file.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-06-13 16:55:59 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-06-16 06:06:02 +0200
commit74790e4f33b5d287859ae91df984753eaa84aa28 (patch)
tree5fba453d48a44568c64fe7f5e806ec489da2c952 /src/common/fs/file.h
parentfsp_srv: Fix filesystem access logging (diff)
downloadyuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar
yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.gz
yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.bz2
yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.lz
yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.xz
yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.zst
yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.zip
Diffstat (limited to '')
-rw-r--r--src/common/fs/file.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/fs/file.h b/src/common/fs/file.h
index 50e270c5b..0f10b6003 100644
--- a/src/common/fs/file.h
+++ b/src/common/fs/file.h
@@ -71,7 +71,7 @@ template <typename Path>
/**
* Writes a string to a file at path and returns the number of characters successfully written.
- * If an file already exists at path, its contents will be erased.
+ * If a file already exists at path, its contents will be erased.
* If the filesystem object at path is not a file, this function returns 0.
*
* @param path Filesystem path
@@ -95,7 +95,6 @@ template <typename Path>
/**
* Appends a string to a file at path and returns the number of characters successfully written.
- * If a file does not exist at path, WriteStringToFile is called instead.
* If the filesystem object at path is not a file, this function returns 0.
*
* @param path Filesystem path