summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-02-21 10:27:21 (GMT)
committerGitHub <noreply@github.com>2021-02-21 10:27:21 (GMT)
commita23168db59581610ec0166ecb5eaffde97e8154b (patch)
tree25c4b1d056d3f38ce100c0290cf7a48019badac0 /src
parente43aaccb144ad800db4ee72137bdebc735217a31 (diff)
parent5a646f7453241643fc3c914f69042bdf601fd5eb (diff)
downloadDoxygen-a23168db59581610ec0166ecb5eaffde97e8154b.zip
Doxygen-a23168db59581610ec0166ecb5eaffde97e8154b.tar.gz
Doxygen-a23168db59581610ec0166ecb5eaffde97e8154b.tar.bz2
Merge pull request #8397 from albert-github/feature/bug_typo_util
Correction of spelling error
Diffstat (limited to 'src')
-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;