From e2d0cc42c86c874466ae508cc296a89d72432714 Mon Sep 17 00:00:00 2001 From: Daniel Bulant Date: Sat, 20 Feb 2021 18:46:20 +0100 Subject: [PATCH] Fix grammatical errors --- Docs/articles/Kernel/VFS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/articles/Kernel/VFS.md b/Docs/articles/Kernel/VFS.md index e75ced181..e3ac64cf7 100644 --- a/Docs/articles/Kernel/VFS.md +++ b/Docs/articles/Kernel/VFS.md @@ -1,7 +1,7 @@ # File System In this article we will discuss about using Cosmos VFS (virtual file system). -Cosmos VFS and the VFS manager classes, let you manage your file system. +Cosmos VFS and the VFS manager classes lets you manage your file system. First, we should create and initialize an instance of the VFS, this will initialize the partition and files-system lists, as well as register the new VFS. This is essential for using the VFS. @@ -52,7 +52,7 @@ Console.WriteLine("File System Type: " + fs_type); ## Get files list -We start by getting the directory entrys list, using: +We start by getting the directory entries list, using: ```C# var directory_list = fs.GetDirectoryListing("0:/");