1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

send_raw_split() example's nickarg was wrong (2 -> 3).

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2124 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-11-20 03:28:31 +00:00 committed by cras
parent 53ce47a81a
commit a715b8b9ab

View File

@ -930,7 +930,7 @@ Server::send_raw_split(cmd, nickarg, max_nicks)
`max_nicks' number of nicks.
Example:
$server->send_raw_split("KICK #channel nick1,nick2,nick3 :byebye", 2, 2);
$server->send_raw_split("KICK #channel nick1,nick2,nick3 :byebye", 3, 2);
Irssi will send commands "KICK #channel nick1,nick2 :byebye" and
"KICK #channel nick3 :byebye" to server.