doc: replay: use a nested description list

This bullet list for `--ref-action` introduces a term with a colon. This is exactly what a description list is, structurally. Let’s be stylistically consistent and use the desc. list markup construct. In short, just transform this unordered list in the same way that we did for `replay.refAction` in the previous commit. Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Kristoffer Haugsbakk committed Jul 30, 2026 at 11:57 UTC dafab0588fd53b3648d66d9add1d6807c89a79ca
1 file changed +4 -4
Documentation/git-replay.adoc
+4 -4
@@ -80,10 +80,10 @@ incompatible with `--contained` (which is a modifier for `--onto` only).
80 Control how references are updated. The mode can be:
81 +
82 --
83 - * `update` (default): Update refs directly using an atomic transaction.
84 - All refs are updated or none are (all-or-nothing behavior).
85 - * `print`: Output update-ref commands for pipeline use. This is the
86 - traditional behavior where output can be piped to `git update-ref --stdin`.
83 +`update` (default);; Update refs directly using an atomic transaction.
84 + All refs are updated or none are (all-or-nothing behavior).
85 +`print`;; Output update-ref commands for pipeline use. This is the
86 + traditional behavior where output can be piped to `git update-ref --stdin`.
87 --
88 +
89 The default mode can be configured via the `replay.refAction` configuration variable.