From 2f99f50f2d55fa23475b7de25ff215439c6f53ed Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Wed, 11 Feb 2026 11:17:48 -0800 Subject: [PATCH] CodingGuidelines: document // comments We do not use // comments in our C code, which is implied by the description of multi-line comment rule and its examples, but is not explicitly spelled out. Spell it out. Signed-off-by: Junio C Hamano --- Documentation/CodingGuidelines | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/CodingGuidelines b/Documentation/CodingGuidelines index df72fe0177..51cb70b515 100644 --- a/Documentation/CodingGuidelines +++ b/Documentation/CodingGuidelines @@ -430,6 +430,8 @@ For C programs: */ _("Here is a translatable string explained by the above."); + We do not use // comments. + - Double negation is often harder to understand than no negation at all. -- 2.47.3