From 7d5a7bf7f0239c1d64866f82dfd6d48f9a9bf595 Mon Sep 17 00:00:00 2001 From: James Vega Date: Fri, 7 Nov 2003 15:10:00 +0000 Subject: [PATCH] The purpose of help has changed and morehelp is no longer a valid command. help -> syntax, morehelp -> help --- docs/STYLE | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/STYLE b/docs/STYLE index 38db980f1..06450a1f2 100644 --- a/docs/STYLE +++ b/docs/STYLE @@ -47,8 +47,7 @@ plugin. 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 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' -command. +the 'syntax' command, and the longer description is used by the 'help' command. Whenever joining more than two strings, use string interpolation, not addition: s = x + y + z # Bad.