Git fork

doc: git-log: fix description list

b27be108c89 (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>

authored by

Kristoffer Haugsbakk and committed by
Junio C Hamano
823d537f b27be108

+2 -2
+2 -2
Documentation/config/log.adoc
··· 23 23 Print out the ref names of any commits that are shown by the log 24 24 command. Possible values are: 25 25 + 26 - ---- 26 + -- 27 27 `short`;; the ref name prefixes `refs/heads/`, `refs/tags/` and 28 28 `refs/remotes/` are not printed. 29 29 `full`;; the full ref name (including prefix) are printed. 30 30 `auto`;; if the output is going to a terminal, 31 31 the ref names are shown as if `short` were given, otherwise no ref 32 32 names are shown. 33 - ---- 33 + -- 34 34 + 35 35 This is the same as the `--decorate` option of the `git log`. 36 36