summaryrefslogtreecommitdiff
path: root/builtin/common/chatcommands.lua
diff options
context:
space:
mode:
Diffstat (limited to 'builtin/common/chatcommands.lua')
-rw-r--r--builtin/common/chatcommands.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/common/chatcommands.lua b/builtin/common/chatcommands.lua
index e8955c6b4..52edda659 100644
--- a/builtin/common/chatcommands.lua
+++ b/builtin/common/chatcommands.lua
@@ -97,7 +97,7 @@ end
if INIT == "client" then
core.register_chatcommand("help", {
- params = gettext("[all/<cmd>]"),
+ params = gettext("[all | <cmd>]"),
description = gettext("Get help for commands"),
func = function(param)
return do_help_cmd(nil, param)
@@ -105,7 +105,7 @@ if INIT == "client" then
})
else
core.register_chatcommand("help", {
- params = "[all/privs/<cmd>]",
+ params = "[all | privs | <cmd>]",
description = "Get help for commands or list privileges",
func = do_help_cmd,
})