diff mbox series

btrfs: remove repeated word

Message ID 20210125014141.GA10137@fedora (mailing list archive)
State New, archived
Headers show
Series btrfs: remove repeated word | expand

Commit Message

Nigel Christian Jan. 25, 2021, 1:41 a.m. UTC
Comment for processed extent end of range has an
unnecessary "in". Eradicate it.

Signed-off-by: Nigel Christian <nigel.l.christian@gmail.com>
---
 fs/btrfs/extent_io.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Sterba Jan. 25, 2021, 3:27 p.m. UTC | #1
On Sun, Jan 24, 2021 at 08:41:41PM -0500, Nigel Christian wrote:
> Comment for processed extent end of range has an
> unnecessary "in". Eradicate it.
> 
> Signed-off-by: Nigel Christian <nigel.l.christian@gmail.com>

Added to misc-next, thanks.
diff mbox series

Patch

diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c
index 7f689ad7709c..2dc98eeb3c93 100644
--- a/fs/btrfs/extent_io.c
+++ b/fs/btrfs/extent_io.c
@@ -2775,7 +2775,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;
 };