aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2017-02-13 15:38:35 -0500
committerJunio C Hamano <gitster@pobox.com>2017-02-13 12:55:36 -0800
commit2aaf37b62c526f8c4615796e04b1fd4271aa3f29 (patch)
tree0b9f5651a8dbd70accda9da6075533c15f98cc68
parent0202c411edc25940cc381bf317badcdf67670be4 (diff)
downloadgit-2aaf37b62c526f8c4615796e04b1fd4271aa3f29.tar.gz
git-2aaf37b62c526f8c4615796e04b1fd4271aa3f29.tar.xz
docs/gitremote-helpers: fix unbalanced quotes
Each of these options is missing the closing single-quote on the option name. This understandably confuses asciidoc, which ends up rendering a stray quote, like: option cloning {'true|false} Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/gitremote-helpers.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/gitremote-helpers.txt b/Documentation/gitremote-helpers.txt
index a4de50ad2..d85491c54 100644
--- a/Documentation/gitremote-helpers.txt
+++ b/Documentation/gitremote-helpers.txt
@@ -441,14 +441,14 @@ set by Git if the remote helper has the 'option' capability.
Request the helper to perform a force update. Defaults to
'false'.
-'option cloning {'true'|'false'}::
+'option cloning' {'true'|'false'}::
Notify the helper this is a clone request (i.e. the current
repository is guaranteed empty).
-'option update-shallow {'true'|'false'}::
+'option update-shallow' {'true'|'false'}::
Allow to extend .git/shallow if the new refs require it.
-'option pushcert {'true'|'false'}::
+'option pushcert' {'true'|'false'}::
GPG sign pushes.
SEE ALSO