aboutsummaryrefslogtreecommitdiff
path: root/e2fsck/pass1.c
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2017-10-08 13:30:08 +0200
committerTheodore Ts'o <tytso@mit.edu>2017-10-15 23:00:11 -0400
commit055866d84dab5e4a0547f54d3bdc017ba4ba99b5 (patch)
treec528336b04e4dbd57ffc57bc9da0d2392844b1f9 /e2fsck/pass1.c
parentce20096fc6f3b38de62c2302e3a8cb87f389dda0 (diff)
downloade2fsprogs-055866d84dab5e4a0547f54d3bdc017ba4ba99b5.tar.gz
Fix typos in code comments and developer docs
Signed-off-by: Sebastian Rasmussen <sebras@gmail.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu> Reviewed-by: Andreas Dilger <adilger@dilger.ca>
Diffstat (limited to 'e2fsck/pass1.c')
-rw-r--r--e2fsck/pass1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/e2fsck/pass1.c b/e2fsck/pass1.c
index 6442c944..7a82536d 100644
--- a/e2fsck/pass1.c
+++ b/e2fsck/pass1.c
@@ -29,7 +29,7 @@
*
* Pass 1 is designed to stash away enough information so that the
* other passes should not need to read in the inode information
- * during the normal course of a filesystem check. (Althogh if an
+ * during the normal course of a filesystem check. (Although if an
* inconsistency is detected, other passes may need to read in an
* inode to fix it.)
*
@@ -1581,7 +1581,7 @@ void e2fsck_pass1(e2fsck_t ctx)
/*
* Make sure the root inode is a directory; if
* not, offer to clear it. It will be
- * regnerated in pass #3.
+ * regenerated in pass #3.
*/
if (!LINUX_S_ISDIR(inode->i_mode)) {
if (fix_problem(ctx, PR_1_ROOT_NO_DIR, &pctx))
@@ -3948,7 +3948,7 @@ static void mark_table_blocks(e2fsck_t ctx)
}
/*
- * Thes subroutines short circuits ext2fs_get_blocks and
+ * These subroutines short circuits ext2fs_get_blocks and
* ext2fs_check_directory; we use them since we already have the inode
* structure, so there's no point in letting the ext2fs library read
* the inode again.