summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/vfs.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-08-08 20:34:06 +0200
committerZach Hilman <zachhilman@gmail.com>2018-08-09 03:18:45 +0200
commit94cf327e776eff934052847346d8415d584b369b (patch)
tree54dc467fce770f6bdbdf8d112e09f7a1fdc30f0a /src/core/file_sys/vfs.h
parentfile_util: Use enum instead of bool for specifing path behavior (diff)
downloadyuzu-94cf327e776eff934052847346d8415d584b369b.tar
yuzu-94cf327e776eff934052847346d8415d584b369b.tar.gz
yuzu-94cf327e776eff934052847346d8415d584b369b.tar.bz2
yuzu-94cf327e776eff934052847346d8415d584b369b.tar.lz
yuzu-94cf327e776eff934052847346d8415d584b369b.tar.xz
yuzu-94cf327e776eff934052847346d8415d584b369b.tar.zst
yuzu-94cf327e776eff934052847346d8415d584b369b.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/vfs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/vfs.h b/src/core/file_sys/vfs.h
index 9c7ef93b8..bf16e7286 100644
--- a/src/core/file_sys/vfs.h
+++ b/src/core/file_sys/vfs.h
@@ -31,7 +31,7 @@ enum class VfsEntryType {
Directory,
};
-// A class represnting an abstract filesystem. A default implementation given the root VirtualDir is
+// A class representing an abstract filesystem. A default implementation given the root VirtualDir is
// provided for convenience, but if the Vfs implementation has any additional state or
// functionality, they will need to override.
struct VfsFilesystem : NonCopyable {