]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_whowas.cpp
Handle more error cases in core_hostname_lookup.
[user/henk/code/inspircd.git] / src / coremods / core_whowas.cpp
index 65c83e08b5895ba208ec64f5692b0f909f4b1060..68e662107050f705e23f12120ebe2f92638d0213 100644 (file)
@@ -37,7 +37,7 @@ enum
 CommandWhowas::CommandWhowas( Module* parent)
        : Command(parent, "WHOWAS", 1)
 {
-       syntax = "<nick>{,<nick>}";
+       syntax = "<nick>";
        Penalty = 2;
 }
 
@@ -303,7 +303,7 @@ class ModuleWhoWas : public Module, public Stats::EventListener
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("WHOWAS", VF_VENDOR);
+               return Version("Provides the WHOWAS command", VF_VENDOR);
        }
 };