diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-06-10 13:09:19 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-06-10 13:09:19 +0200 |
commit | 1cd9074c09a9b87021ed53b6b5450852a48d3ebd (patch) | |
tree | 1750e3042108cabbb223234e21a6392e86c14a73 /src/core/wee-command.c | |
parent | 274835f0cad119688adf61bf4c48f11eec2a00b8 (diff) | |
download | weechat-1cd9074c09a9b87021ed53b6b5450852a48d3ebd.zip |
Fix help of /wait command (missing '/' in examples)
Diffstat (limited to 'src/core/wee-command.c')
-rw-r--r-- | src/core/wee-command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index caa1d6328..6076cb758 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -4291,8 +4291,8 @@ command_init () "been closed before execution of command), then command " "is executed on WeeChat core buffer).\n\n" "Examples:\n" - " join channel in 10 sec: /wait 10 join #test\n" - " set away in 15 min: /wait 15m away -all I'm away\n" + " join channel in 10 sec: /wait 10 /join #test\n" + " set away in 15 min: /wait 15m /away -all I'm away\n" " say 'hello' in 2 min: /wait 2m hello"), "%- %(commands)", &command_wait, NULL); |