summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-12-27 13:46:54 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-12-27 13:46:54 +0000
commitdcec1cca1737fe10ac1da1d95580942682bee889 (patch)
treefa2233498b70befb0fc85403424d0ce74add9a84 /src/command_parse.cpp
parentdcf958f42b6eeb7b22a99de561d3612791b62c80 (diff)
Fix a comment too.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10920 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 6a3d48cc2..e1106cfdc 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -69,7 +69,7 @@ int CommandParser::LoopCall(User* user, Command* CommandObj, const std::vector<s
return 0;
/** Some lame ircds will weed out dupes using some shitty O(n^2) algorithm.
- * By using std::map (thanks for the idea w00t) we can cut this down a ton.
+ * By using std::set (thanks for the idea w00t) we can cut this down a ton.
* ...VOOODOOOO!
*/
std::set<irc::string> dupes;