]> git.ipfire.org Git - thirdparty/git.git/commitdiff
doc: replay: use a nested definition list
authorKristoffer Haugsbakk <code@khaugsbakk.name>
Thu, 21 May 2026 18:02:00 +0000 (20:02 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 22 May 2026 00:42:48 +0000 (09:42 +0900)
This bullet list for `--ref-action` introduces a term with a colon.
This is exactly what a definition list is, structurally. Let’s be
sylistically consistent and use the definition list markup construct.

We can reuse the `::` delimiter since we use an open block.
But for consistency use the typical nested definition list
delimiter, namely `;;`.

Also drop the harmless but unneeded indentation.

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

index 4de85088d6c4c9d7e649670f9de48f685a6aa124..b4fe43ec687859e4043e449dd882b6dd2770c34c 100644 (file)
@@ -80,10 +80,10 @@ incompatible with `--contained` (which is a modifier for `--onto` only).
        Control how references are updated. The mode can be:
 +
 --
-       * `update` (default): Update refs directly using an atomic transaction.
-         All refs are updated or none are (all-or-nothing behavior).
-       * `print`: Output update-ref commands for pipeline use. This is the
-         traditional behavior where output can be piped to `git update-ref --stdin`.
+`update` (default);; Update refs directly using an atomic transaction.
+       All refs are updated or none are (all-or-nothing behavior).
+`print`;; Output update-ref commands for pipeline use. This is the
+       traditional behavior where output can be piped to `git update-ref --stdin`.
 --
 +
 The default mode can be configured via the `replay.refAction` configuration variable.