diff options
author | Sven Strickroth <email@cs-ware.de> | 2024-10-21 17:12:26 +0200 |
---|---|---|
committer | Taylor Blau <me@ttaylorr.com> | 2024-10-21 22:05:04 +0200 |
commit | c32d4a8cfe467f5cc5df70b87db27fa210d63d4b (patch) | |
tree | f11d027ad34b150594f2227cfa03c0c41905158f /fsmonitor.c | |
parent | The third batch (diff) | |
download | git-c32d4a8cfe467f5cc5df70b87db27fa210d63d4b.tar.xz git-c32d4a8cfe467f5cc5df70b87db27fa210d63d4b.zip |
global: Fix duplicate word typos
Used regex to find these typos:
(?<!struct )(?<=\s)([a-z]{1,}) \1(?=\s)
Signed-off-by: Sven Strickroth <email@cs-ware.de>
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Diffstat (limited to 'fsmonitor.c')
-rw-r--r-- | fsmonitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fsmonitor.c b/fsmonitor.c index 237ca59d00..309a2541cb 100644 --- a/fsmonitor.c +++ b/fsmonitor.c @@ -247,7 +247,7 @@ static size_t handle_using_name_hash_icase( * technically this is a tracked file or a sparse-directory. * It should not have any entries in the untracked-cache, so * we should not need to use the case-corrected spelling to - * invalidate the the untracked-cache. So we may not need to + * invalidate the untracked-cache. So we may not need to * do this. For now, I'm going to be conservative and always * do it; we can revisit this later. */ |