From 39901e77d4543bdc30d6967ea0d162886b7d0fb0 Mon Sep 17 00:00:00 2001 From: Elijah Newren Date: Thu, 16 Apr 2026 23:36:27 +0000 Subject: [PATCH] CodingGuidelines: fix subject-verb agreement Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- Documentation/CodingGuidelines | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);