diff options
author | Teddy Wing | 2017-08-20 02:37:29 +0200 |
---|---|---|
committer | Teddy Wing | 2017-08-20 02:37:29 +0200 |
commit | d1d4ca92e6665a23bb103dc540daaa3fb4f96ab6 (patch) | |
tree | d99aa23ebbfbff7fd295e56600b02483af4971d3 /src/Plugin | |
parent | be5726ab7b5b48ea7b29a50aaf54189ebe1ff282 (diff) | |
download | sorbot-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/Plugin')
-rw-r--r-- | src/Plugin/GitRemoteSetOrigin.hs | 2 |
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." } |