]> git.ipfire.org Git - thirdparty/git.git/commitdiff
config/advice.txt: fix description list separator
authorMartin Ågren <martin.agren@gmail.com>
Wed, 8 Jan 2020 20:08:44 +0000 (21:08 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 8 Jan 2020 21:38:24 +0000 (13:38 -0800)
The whole submoduleAlternateErrorStrategyDie item is interpreted as
being part of the supporting content of the preceding item. This is
because we don't give a double-colon "::" for the separator, but just a
single colon, ":". Let's fix that.

There are a few other matches for [^:]:\s*$ in Documentation/config, but
I didn't spot any similar bugs among them.

Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config/advice.txt

index d4e698cd3fe4aaee50df132ab237a8f35ad4c8d8..4be93f8ad9c677e45c1dab652e28dab40bd36691 100644 (file)
@@ -107,7 +107,7 @@ advice.*::
                editor input from the user.
        nestedTag::
                Advice shown if a user attempts to recursively tag a tag object.
-       submoduleAlternateErrorStrategyDie:
+       submoduleAlternateErrorStrategyDie::
                Advice shown when a submodule.alternateErrorStrategy option
                configured to "die" causes a fatal error.
 --