From: Kristoffer Haugsbakk Date: Mon, 27 Apr 2026 19:06:50 +0000 (+0200) Subject: doc: log: use the same delimiter in description list X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=b635fd0725dd74ae59a0467a3180624a8e9abdb0;p=thirdparty%2Fgit.git doc: log: use the same delimiter in description list We must use the same delimiter since this is a meant to be a flat list. Introducing a new legal delimiter like `::` makes an inner description list: ... full the full ref name ... auto if the output ... Signed-off-by: Kristoffer Haugsbakk Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-log.adoc b/Documentation/git-log.adoc index 1c95499060..fb3ac11283 100644 --- a/Documentation/git-log.adoc +++ b/Documentation/git-log.adoc @@ -40,7 +40,7 @@ OPTIONS `short`;; the ref name prefixes `refs/heads/`, `refs/tags/` and `refs/remotes/` are not printed. `full`;; the full ref name (including prefix) is printed. -`auto`:: if the output is going to a terminal, the ref names +`auto`;; if the output is going to a terminal, the ref names are shown as if `short` were given, otherwise no ref names are shown. --