summaryrefslogtreecommitdiff
path: root/Documentation/config/advice.txt
diff options
context:
space:
mode:
authorMartin Ågren <martin.agren@gmail.com>2020-01-08 20:08:44 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-01-08 21:38:24 (GMT)
commit3901d2c6bd67946d1a961736b371a542b0eb16fb (patch)
tree5b26de0d3a4720b1386b14d00aceee2278809958 /Documentation/config/advice.txt
parent4f3e57ef13d0ad4c00d0a87f0858cde81456a2e0 (diff)
downloadgit-3901d2c6bd67946d1a961736b371a542b0eb16fb.zip
git-3901d2c6bd67946d1a961736b371a542b0eb16fb.tar.gz
git-3901d2c6bd67946d1a961736b371a542b0eb16fb.tar.bz2
config/advice.txt: fix description list separator
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>
Diffstat (limited to 'Documentation/config/advice.txt')
-rw-r--r--Documentation/config/advice.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/config/advice.txt b/Documentation/config/advice.txt
index d4e698c..4be93f8 100644
--- a/Documentation/config/advice.txt
+++ b/Documentation/config/advice.txt
@@ -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.
--