From a0addd1408fd2cafe0a68d5b8a52b3cd50475941 Mon Sep 17 00:00:00 2001 From: duds Date: Wed, 6 Nov 2024 15:25:50 +0000 Subject: [PATCH] fix: typo handle to handled (#7686) From handle to handled, I believe this is grammatically correct. --- .../linux/content/110-disks-filesystems/100-inodes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/linux/content/110-disks-filesystems/100-inodes.md b/src/data/roadmaps/linux/content/110-disks-filesystems/100-inodes.md index 78a85d94c..fb6a99b63 100644 --- a/src/data/roadmaps/linux/content/110-disks-filesystems/100-inodes.md +++ b/src/data/roadmaps/linux/content/110-disks-filesystems/100-inodes.md @@ -4,11 +4,11 @@ In a Linux filesystem, an inode (index node) is a core concept that represents a Every file or directory in a Linux filesystem has a unique inode, and each inode is identified by an inode number within its own filesystem. This inode number provides a way of tracking each file, acting as a unique identifier for the Linux operating system. -Whenever a file is created in Linux, it is automatically assigned an inode that stores its metadata. The structure and storage of inodes are handle by the filesystem, which means the kind and amount of metadata in an inode can differ between filesystems. +Whenever a file is created in Linux, it is automatically assigned an inode that stores its metadata. The structure and storage of inodes are handled by the filesystem, which means the kind and amount of metadata in an inode can differ between filesystems. Although you would not interact with inodes directly in everyday usage, understanding inodes can be very helpful when dealing with advanced file operations, such as creating links or recovering deleted files. ```bash # Retrieve the inode of a file ls -i filename -``` \ No newline at end of file +```