summaryrefslogtreecommitdiffstats
path: root/oidtree.c
diff options
context:
space:
mode:
authorSven Strickroth <email@cs-ware.de>2024-10-21 17:12:26 +0200
committerTaylor Blau <me@ttaylorr.com>2024-10-21 22:05:04 +0200
commitc32d4a8cfe467f5cc5df70b87db27fa210d63d4b (patch)
treef11d027ad34b150594f2227cfa03c0c41905158f /oidtree.c
parentThe third batch (diff)
downloadgit-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 'oidtree.c')
-rw-r--r--oidtree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/oidtree.c b/oidtree.c
index 92d03b52db..151568f74f 100644
--- a/oidtree.c
+++ b/oidtree.c
@@ -47,7 +47,7 @@ void oidtree_insert(struct oidtree *ot, const struct object_id *oid)
/*
* n.b. Current callers won't get us duplicates, here. If a
- * future caller causes duplicates, there'll be a a small leak
+ * future caller causes duplicates, there'll be a small leak
* that won't be freed until oidtree_clear. Currently it's not
* worth maintaining a free list
*/