doc: git-log: fix description list

b27be108c8 (doc: git-log: convert log config to new doc format,
2025-07-07) intended to convert a paragraph describing the different
options for `log.decorate` into a description list.  But the literal
block syntax was used by mistake.

Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Kristoffer Haugsbakk
2025-08-08 15:43:12 +02:00
committed by Junio C Hamano
parent b27be108c8
commit 823d537fa7

View File

@@ -23,14 +23,14 @@ be used.
Print out the ref names of any commits that are shown by the log Print out the ref names of any commits that are shown by the log
command. Possible values are: command. Possible values are:
+ +
---- --
`short`;; the ref name prefixes `refs/heads/`, `refs/tags/` and `short`;; the ref name prefixes `refs/heads/`, `refs/tags/` and
`refs/remotes/` are not printed. `refs/remotes/` are not printed.
`full`;; the full ref name (including prefix) are printed. `full`;; the full ref name (including prefix) are printed.
`auto`;; if the output is going to a terminal, `auto`;; if the output is going to a terminal,
the ref names are shown as if `short` were given, otherwise no ref the ref names are shown as if `short` were given, otherwise no ref
names are shown. names are shown.
---- --
+ +
This is the same as the `--decorate` option of the `git log`. This is the same as the `--decorate` option of the `git log`.