not sure if this patch really belongs in this specific patchset, but it might be worth also fixing the same typo in grep as shown by : --- >8 --- Subject: grep: fix worktree mis spelling 1d1729caeb (grep: replace grep_read_mutex by internal obj read lock, 2020-01-15) adds it as part of a comment fix it to the right spelling without the extra trailing 'e'. diff --git a/grep.c b/grep.c index 8f91af1cb0..f40c734565 100644 --- a/grep.c +++ b/grep.c @@ -1510,7 +1510,7 @@ static int fill_textconv_grep(struct repository *r, * * TODO: allowing text conversion to run in parallel with object * reading operations might increase performance in the multithreaded - * non-worktreee git-grep with --textconv. + * non-worktree git-grep with --textconv. */ obj_read_lock(); size = fill_textconv(r, driver, df, &buf); Signed-off-by: Carlo Marcelo Arenas Belón <carenas@xxxxxxxxx>