vfs: Fix documentation

This commit is contained in:
Zach Hilman 2018-08-08 21:44:59 -04:00
parent 94cf327e77
commit 668458525e
2 changed files with 4 additions and 2 deletions

View file

@ -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);