Skip to content

Commit

Permalink
Correction of typing error
Browse files Browse the repository at this point in the history
Correction of typing error
  • Loading branch information
albert-github committed Feb 21, 2021
1 parent e43aacc commit 5a646f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5a646f7

Please sign in to comment.