summaryrefslogtreecommitdiff
path: root/src/hashcomp.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-05-26 18:51:01 -0400
committerAdam <Adam@anope.org>2013-06-02 02:45:53 +0200
commitfdac3263c0ee8423bac88007af19f4873986ae26 (patch)
tree24a86b0ef0832dcd8db95ce424ea9706f97a1603 /src/hashcomp.cpp
parent01ac5148e948de53cd708bb28d0fd237263a0fbf (diff)
s/seperator/separator/g
Diffstat (limited to 'src/hashcomp.cpp')
-rw-r--r--src/hashcomp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp
index 29b67aea4..06b3ce669 100644
--- a/src/hashcomp.cpp
+++ b/src/hashcomp.cpp
@@ -288,7 +288,7 @@ bool irc::tokenstream::GetToken(long &token)
return returnval;
}
-irc::sepstream::sepstream(const std::string& source, char seperator, bool allowempty)
+irc::sepstream::sepstream(const std::string& source, char separator, bool allowempty)
: tokens(source), sep(separator), pos(0), allow_empty(allowempty)
{
}
@@ -397,13 +397,13 @@ int irc::modestacker::GetStackedLine(std::vector<std::string> &result, int max_l
return n;
}
-irc::stringjoiner::stringjoiner(const std::string& seperator, const std::vector<std::string>& sequence, unsigned int begin, unsigned int end)
+irc::stringjoiner::stringjoiner(const std::string& separator, const std::vector<std::string>& sequence, unsigned int begin, unsigned int end)
{
if (end < begin)
return; // nothing to do here
for (unsigned int v = begin; v < end; v++)
- joined.append(sequence[v]).append(seperator);
+ joined.append(sequence[v]).append(separator);
joined.append(sequence[end]);
}