summaryrefslogtreecommitdiff
path: root/src/plugins/irc
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-11-29 10:22:20 +0100
committerSebastien Helleu <flashcode@flashtux.org>2010-11-29 10:22:20 +0100
commit13de7e327c69e7848aea5fc29e61089083d7c8bf (patch)
treebd23086f2ddbb38dce61e59026a13dc9c64be07f /src/plugins/irc
parent528dc258cad61903569413a24c6492759a2ba69a (diff)
downloadweechat-13de7e327c69e7848aea5fc29e61089083d7c8bf.zip
Fix /help notice: receiver can be nick or channel
Diffstat (limited to 'src/plugins/irc')
-rw-r--r--src/plugins/irc/irc-command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c
index e700610de..7021dfb67 100644
--- a/src/plugins/irc/irc-command.c
+++ b/src/plugins/irc/irc-command.c
@@ -4854,9 +4854,9 @@ irc_command_init ()
&irc_command_nick, NULL);
weechat_hook_command ("notice",
N_("send notice message to user"),
- N_("[-server server] nickname text"),
+ N_("[-server server] receiver text"),
N_(" server: send to this server (internal name)\n"
- "nickname: user to send notice to\n"
+ "receiver: nick or channel\n"
" text: text to send"),
"%(nicks) %-", &irc_command_notice, NULL);
weechat_hook_command ("notify",