summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 168fdf0..bad4c2e 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1294,7 +1294,7 @@ static bool isMatchingWildcard(const StringType &input,size_t input_pos,
// if we are at the end of the input string
if (input_pos==input.length())
{
- // match iff the remainer of the pattern is '*'s
+ // match iff the remainder of the pattern is '*'s
for (size_t i=pattern_pos; i<pattern.size();i++)
{
if (pattern[i]!='*') return false;