From: D. Ben Knoble Date: Sun, 2 Nov 2025 16:17:45 +0000 (-0500) Subject: doc: clarify command equivalence comment X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2fd151af1393fb8b380820ef6d64a5241258a0b0;p=thirdparty%2Fgit.git doc: clarify command equivalence comment Documentation of command parsing for :(optional) includes a terse comment; expand it to be clearer to readers. Suggested-by: Phillip Wood Signed-off-by: D. Ben Knoble Signed-off-by: Junio C Hamano --- diff --git a/Documentation/gitcli.adoc b/Documentation/gitcli.adoc index ef2a0a399d..6815d6bfb7 100644 --- a/Documentation/gitcli.adoc +++ b/Documentation/gitcli.adoc @@ -223,7 +223,7 @@ Options that take a filename allow a prefix `:(optional)`. For example: ---------------------------- git commit -F :(optional)COMMIT_EDITMSG -# if COMMIT_EDITMSG does not exist, equivalent to +# if COMMIT_EDITMSG does not exist, the above is equivalent to git commit ----------------------------