about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-02-07 19:32:23 +0000
committerJames Booth <boothj5@gmail.com>2016-02-07 19:32:23 +0000
commit6d518327a3930de15f4bd13ade50c803721c6866 (patch)
treee87d80bd4b4ae1be8029326671a032b616526406 /src
parent62b0cdd8fd3e811033f58d39a744d7f7eb973e3c (diff)
downloadprofani-tty-6d518327a3930de15f4bd13ade50c803721c6866.tar.gz
Fixed /role and /affiliation help
Diffstat (limited to 'src')
-rw-r--r--src/command/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/command.c b/src/command/command.c
index 97d2dfc6..05b047db 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -662,7 +662,7 @@ static struct cmd_t command_defs[] =
             CMD_TAG_GROUPCHAT)
         CMD_SYN(
             "/affiliation set <affiliation> <jid> [<reason>]",
-            "/list [<affiliation>]")
+            "/affiliation list [<affiliation>]")
         CMD_DESC(
             "Manage room affiliations. "
             "Affiliation may be one of owner, admin, member, outcast or none.")
@@ -678,7 +678,7 @@ static struct cmd_t command_defs[] =
             CMD_TAG_GROUPCHAT)
         CMD_SYN(
             "/role set <role> <nick> [<reason>]",
-            "/list [<role>]")
+            "/role list [<role>]")
         CMD_DESC(
             "Manage room roles. "
             "Role may be one of moderator, participant, visitor or none.")
151'>151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185