The purpose of help has changed and morehelp is no longer a valid command.

help -> syntax, morehelp -> help
This commit is contained in:
James Vega 2003-11-07 15:10:00 +00:00
parent c32939ffb1
commit 7d5a7bf7f0

View File

@ -47,8 +47,7 @@ plugin.
Method docstrings in classes deriving from callbacks.Privmsg should include an Method docstrings in classes deriving from callbacks.Privmsg should include an
argument list as their first line, and after that a blank line followed by argument list as their first line, and after that a blank line followed by
a longer description of what the command does. The argument list is used by a longer description of what the command does. The argument list is used by
the 'help' command, and the longer description is used by the 'morehelp' the 'syntax' command, and the longer description is used by the 'help' command.
command.
Whenever joining more than two strings, use string interpolation, not addition: Whenever joining more than two strings, use string interpolation, not addition:
s = x + y + z # Bad. s = x + y + z # Bad.