summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/commands/channel.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/commands/channel.go b/cmd/commands/channel.go
index 597a22450..d7b48f04c 100644
--- a/cmd/commands/channel.go
+++ b/cmd/commands/channel.go
@@ -31,7 +31,7 @@ var RemoveChannelUsersCmd = &cobra.Command{
Use: "remove [channel] [users]",
Short: "Remove users from channel",
Long: "Remove some users from channel",
- Example: " channel remove mychannel user@example.com username",
+ Example: " channel remove myteam:mychannel user@example.com username",
RunE: removeChannelUsersCmdF,
}
@@ -39,7 +39,7 @@ var AddChannelUsersCmd = &cobra.Command{
Use: "add [channel] [users]",
Short: "Add users to channel",
Long: "Add some users to channel",
- Example: " channel add mychannel user@example.com username",
+ Example: " channel add myteam:mychannel user@example.com username",
RunE: addChannelUsersCmdF,
}