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 16:05:04 -0400 |
| commit | c32d4a8cfe467f5cc5df70b87db27fa210d63d4b (patch) | |
| tree | f11d027ad34b150594f2227cfa03c0c41905158f /builtin/difftool.c | |
| parent | The third batch (diff) | |
| download | git-c32d4a8cfe467f5cc5df70b87db27fa210d63d4b.tar.gz 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 'builtin/difftool.c')
| -rw-r--r-- | builtin/difftool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/difftool.c b/builtin/difftool.c index 5772e82106..ca1b089065 100644 --- a/builtin/difftool.c +++ b/builtin/difftool.c @@ -340,7 +340,7 @@ static void write_file_in_directory(struct strbuf *dir, size_t dir_len, /* Write the file contents for the left and right sides of the difftool * dir-diff representation for submodules and symlinks. Symlinks and submodules * are written as regular text files so that external diff tools can diff them - * as text files, resulting in behavior that is analogous to to what "git diff" + * as text files, resulting in behavior that is analogous to what "git diff" * displays for symlink and submodule diffs. */ static void write_standin_files(struct pair_entry *entry, |
