Skip to content

Commit 5a646f7

Browse files
committed
Correction of typing error
Correction of typing error
1 parent e43aacc commit 5a646f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1294,7 +1294,7 @@ static bool isMatchingWildcard(const StringType &input,size_t input_pos,
12941294
// if we are at the end of the input string
12951295
if (input_pos==input.length())
12961296
{
1297-
// match iff the remainer of the pattern is '*'s
1297+
// match iff the remainder of the pattern is '*'s
12981298
for (size_t i=pattern_pos; i<pattern.size();i++)
12991299
{
13001300
if (pattern[i]!='*') return false;

0 commit comments

Comments
 (0)