summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-08-09 03:44:59 +0200
committerZach Hilman <zachhilman@gmail.com>2018-08-09 03:45:04 +0200
commit668458525ede125509ee27388221247b639f4676 (patch)
tree5308c9c9c00fc3d5175794962ec35e1423bf3500 /src/core
parentvfs: Fix typo in VfsFilesystem docs (diff)
downloadyuzu-668458525ede125509ee27388221247b639f4676.tar
yuzu-668458525ede125509ee27388221247b639f4676.tar.gz
yuzu-668458525ede125509ee27388221247b639f4676.tar.bz2
yuzu-668458525ede125509ee27388221247b639f4676.tar.lz
yuzu-668458525ede125509ee27388221247b639f4676.tar.xz
yuzu-668458525ede125509ee27388221247b639f4676.tar.zst
yuzu-668458525ede125509ee27388221247b639f4676.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/file_sys/vfs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/vfs.h b/src/core/file_sys/vfs.h
index bf16e7286..141a053ce 100644
--- a/src/core/file_sys/vfs.h
+++ b/src/core/file_sys/vfs.h
@@ -31,8 +31,8 @@ enum class VfsEntryType {
Directory,
};
-// 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
+// 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 {
VfsFilesystem(VirtualDir root);