]> git.ipfire.org Git - thirdparty/git.git/commitdiff
doc: log: fix --decorate description list
authorKristoffer Haugsbakk <code@khaugsbakk.name>
Mon, 27 Apr 2026 19:06:49 +0000 (21:06 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 28 Apr 2026 00:46:26 +0000 (09:46 +0900)
026f2e3b (doc: convert git-log to new documentation format, 2025-07-07)
transformed the inline description of `--decorate` options to a
description list:

    We also transform inline descriptions of possible values of option
    --decorate into a list, which is more readable and extensible.

But a source code block was used instead of an open block.

Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-log.adoc

index e304739c5e8011998ab8dd355dca7b26c1d99dd1..1c95499060d1495301cc2f9dc2e428489fa32eb7 100644 (file)
@@ -36,14 +36,14 @@ OPTIONS
        Print out the ref names of any commits that are shown. Possible values
        are:
 +
-----
+--
 `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
        are shown as if `short` were given, otherwise no ref names are
        shown.
-----
+--
 +
 The option `--decorate` is short-hand for `--decorate=short`. Default to
 configuration value of `log.decorate` if configured, otherwise, `auto`.