aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTeddy Wing2017-08-20 02:37:29 +0200
committerTeddy Wing2017-08-20 02:37:29 +0200
commitd1d4ca92e6665a23bb103dc540daaa3fb4f96ab6 (patch)
treed99aa23ebbfbff7fd295e56600b02483af4971d3 /src
parentbe5726ab7b5b48ea7b29a50aaf54189ebe1ff282 (diff)
downloadsorbot-d1d4ca92e6665a23bb103dc540daaa3fb4f96ab6.tar.bz2
GitRemoteSetOrigin: Use lowercase bracket format in command help
Follow the same format used in 08077a854a63884de619034d6762aa5b18ed2f91 with the argument description in lowercase surrounded by angle brackets.
Diffstat (limited to 'src')
-rw-r--r--src/Plugin/GitRemoteSetOrigin.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Plugin/GitRemoteSetOrigin.hs b/src/Plugin/GitRemoteSetOrigin.hs
index a0d0fa7..8ab86dc 100644
--- a/src/Plugin/GitRemoteSetOrigin.hs
+++ b/src/Plugin/GitRemoteSetOrigin.hs
@@ -16,7 +16,7 @@ import Plugin.Base
gitRemoteSetOrigin = Plugin
{ matchRegex = "^git remote set origin ([^ ]+)$"
, perform = gitRemoteSetOriginAction
- , command = "git remote set origin URL"
+ , command = "git remote set origin <url>"
, description = "Set the git remote URL for this channel."
}