diff options
Diffstat (limited to 'src/commands')
-rw-r--r-- | src/commands/cmd_connect.cpp | 2 | ||||
-rw-r--r-- | src/commands/cmd_squit.cpp | 2 | ||||
-rw-r--r-- | src/commands/cmd_userhost.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/cmd_connect.cpp b/src/commands/cmd_connect.cpp index 7cf4752d2..8fb82fab4 100644 --- a/src/commands/cmd_connect.cpp +++ b/src/commands/cmd_connect.cpp @@ -30,7 +30,7 @@ class CommandConnect : public Command public: /** Constructor for connect. */ - CommandConnect ( Module* parent) : Command(parent,"CONNECT",1) { flags_needed = 'o'; syntax = "<servername> [<remote-server>]"; } + CommandConnect ( Module* parent) : Command(parent,"CONNECT",1) { flags_needed = 'o'; syntax = "<servername>"; } /** Handle command. * @param parameters The parameters to the comamnd * @param pcnt The number of parameters passed to teh command diff --git a/src/commands/cmd_squit.cpp b/src/commands/cmd_squit.cpp index 064d2a31d..ce73ee05b 100644 --- a/src/commands/cmd_squit.cpp +++ b/src/commands/cmd_squit.cpp @@ -30,7 +30,7 @@ class CommandSquit : public Command public: /** Constructor for squit. */ - CommandSquit ( Module* parent) : Command(parent,"SQUIT",1,2) { flags_needed = 'o'; syntax = "<servername> [<reason>]"; } + CommandSquit ( Module* parent) : Command(parent,"SQUIT",1,2) { flags_needed = 'o'; syntax = "<servername>"; } /** Handle command. * @param parameters The parameters to the comamnd * @param pcnt The number of parameters passed to teh command diff --git a/src/commands/cmd_userhost.cpp b/src/commands/cmd_userhost.cpp index 399de0b1a..1065f9a35 100644 --- a/src/commands/cmd_userhost.cpp +++ b/src/commands/cmd_userhost.cpp @@ -31,7 +31,7 @@ class CommandUserhost : public Command /** Constructor for userhost. */ CommandUserhost ( Module* parent) : Command(parent,"USERHOST", 1, 5) { - syntax = "<nick> {<nick>}"; + syntax = "<nick> [<nick> ...]"; } /** Handle command. * @param parameters The parameters to the comamnd |