aboutsummaryrefslogtreecommitdiffstats
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-07-08 13:14:59 -0700
committerJunio C Hamano <gitster@pobox.com>2021-07-08 13:14:59 -0700
commita515f26eac9f581bf5acc389ac881a6a56bc6ef8 (patch)
tree12dc631c07683fdf8bb0fe89545e0b55ef996ff2 /git-compat-util.h
parent4677587e574aee4d9b07da4984cb3560162368d5 (diff)
parentabcb66c614c574cfa1afccb230bf22cbde4d5557 (diff)
downloadgit-a515f26eac9f581bf5acc389ac881a6a56bc6ef8.tar.gz
Merge branch 'ar/typofix'
Typofixes. * ar/typofix: *: fix typos which duplicate a word
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index fb6e9af76b..dca72cba29 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -1366,7 +1366,7 @@ static inline void *container_of_or_null_offset(void *ptr, size_t offset)
(type *)container_of_or_null_offset(ptr, offsetof(type, member))
/*
- * like offsetof(), but takes a pointer to a a variable of type which
+ * like offsetof(), but takes a pointer to a variable of type which
* contains @member, instead of a specified type.
* @ptr is subject to multiple evaluation since we can't rely on __typeof__
* everywhere.