diff options
author | Andrei Rybak <rybak.a.v@gmail.com> | 2021-06-11 13:18:50 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-06-14 03:16:06 +0200 |
commit | abcb66c614c574cfa1afccb230bf22cbde4d5557 (patch) | |
tree | e8f002ec36c9cc7788dc2e6db705c6ef624728fc /git-compat-util.h | |
parent | Git 2.32 (diff) | |
download | git-abcb66c614c574cfa1afccb230bf22cbde4d5557.tar.xz git-abcb66c614c574cfa1afccb230bf22cbde4d5557.zip |
*: fix typos which duplicate a word
Fix typos in documentation, code comments, and RelNotes which repeat
various words. In trivial cases, just delete the duplicated word and
rewrap text, if needed. Reword the affected sentence in
Documentation/RelNotes/1.8.4.txt for it to make sense.
Signed-off-by: Andrei Rybak <rybak.a.v@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index a508dbe5a3..df7dae9be1 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -1368,7 +1368,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. |