@leroysheep / LeeRoySheep / commits / 39901e77d4

CodingGuidelines: fix subject-verb agreement

Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Elijah Newren committed Apr 16, 2026 at 23:36 UTC 39901e77d4543bdc30d6967ea0d162886b7d0fb0
1 file changed +1 -1
Documentation/CodingGuidelines
+1 -1
index 4992e52093..2aafcec40d 100644 --- a/Documentation/CodingGuidelines +++ b/Documentation/CodingGuidelines @@ -688,7 +688,7 @@ For C programs: walk_dog(dog[1]); Cases where the array is employed as a whole rather than as its unit parts, - the plural forms is preferable. E.g: + the plural form is preferable. E.g: char *dogs[] = ...; walk_all_dogs(dogs);