From: Elijah Newren Date: Thu, 16 Apr 2026 23:36:27 +0000 (+0000) Subject: CodingGuidelines: fix subject-verb agreement X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39901e77d4543bdc30d6967ea0d162886b7d0fb0;p=thirdparty%2Fgit.git CodingGuidelines: fix subject-verb agreement Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- diff --git a/Documentation/CodingGuidelines b/Documentation/CodingGuidelines 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);