btrfs: remove repeated word in struct member comment
authorNigel Christian <nigel.l.christian@gmail.com>
Mon, 25 Jan 2021 01:41:41 +0000 (20:41 -0500)
committerDavid Sterba <dsterba@suse.com>
Mon, 8 Feb 2021 21:58:55 +0000 (22:58 +0100)
Comment for processed extent end of range has an unnecessary "in",
remove it.

Signed-off-by: Nigel Christian <nigel.l.christian@gmail.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/extent_io.c

index 2fa563d..edcdbd7 100644 (file)
@@ -2776,7 +2776,7 @@ struct processed_extent {
        struct btrfs_inode *inode;
        /* Start of the range in @inode */
        u64 start;
-       /* End of the range in in @inode */
+       /* End of the range in @inode */
        u64 end;
        bool uptodate;
 };