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
@@ -688,7 +688,7 @@ For C programs:
688
walk_dog(dog[1]);
689
690
Cases where the array is employed as a whole rather than as its unit parts,
691
- the plural forms is preferable. E.g:
691
+ the plural form is preferable. E.g:
692
693
char *dogs[] = ...;
694
walk_all_dogs(dogs);