From 18f654e22e8cd1d5bd6acf3933c766bb46666760 Mon Sep 17 00:00:00 2001 From: himanshi1505 Date: Thu, 16 Apr 2026 12:05:09 +0530 Subject: [PATCH] docs(p8-read-fs): fix inode cache sentence grammar --- p8-read-fs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p8-read-fs.md b/p8-read-fs.md index c19af34..cf97abe 100644 --- a/p8-read-fs.md +++ b/p8-read-fs.md @@ -16,7 +16,7 @@ been read from the disk. `fs.c` maintains a cache of inodes. In a fuller OS, some directories such as the root will be read again and again so we don't want to read them back from disk -every time. When number of references to in-memory copy of inode become zero, +every time. When the number of references to an in-memory copy of the inode becomes zero, they can be evicted from the cache. This number of references is not to be confused with `dinode.nlink` which is the number of links to this `inode` in the file system. Evicting an in-memory `inode` from `icache` does not delete its disk