summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2021-03-03 08:53:00 (GMT)
committeralbert-github <albert.tests@gmail.com>2021-03-03 08:53:00 (GMT)
commit655b5ecb86ec961293bbe2eea9996191210afabf (patch)
treeb1ca548123ab86df3d0cd79e40c8779c0bb8b2f2 /src
parent3d4f0313d20cc8f71ade094faa006a2171ff29c2 (diff)
downloadDoxygen-655b5ecb86ec961293bbe2eea9996191210afabf.zip
Doxygen-655b5ecb86ec961293bbe2eea9996191210afabf.tar.gz
Doxygen-655b5ecb86ec961293bbe2eea9996191210afabf.tar.bz2
Spelling correction
Spelling corrections as found by Fossies
Diffstat (limited to 'src')
-rw-r--r--src/regex.cpp2
-rw-r--r--src/regex.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/regex.cpp b/src/regex.cpp
index e3aa057..62678b7 100644
--- a/src/regex.cpp
+++ b/src/regex.cpp
@@ -159,7 +159,7 @@ class Ex::Private
#endif
bool matchAt(size_t tokenPos,const std::string &str,Match &match,size_t pos,int level) const;
- /** Flag indicating the expression was succesfully compiled */
+ /** Flag indicating the expression was successfully compiled */
bool error = false;
/** The token stream representing the compiled regular expression. */
diff --git a/src/regex.h b/src/regex.h
index e4bd399..bedc052 100644
--- a/src/regex.h
+++ b/src/regex.h
@@ -82,7 +82,7 @@ class Ex
*
* @note that capture ranges cannot be nested, and `*`, `+`, and `?` do not work on
* capture ranges. e.g. `(abd)?` is not valid. If multiple capture ranges are
- * specified then some character has to be inbetween them,
+ * specified then some character has to be in between them,
* e.g. this does not work `(.*)(a.*)`, but this does `(.*)a(.*)`.
*
* In Wildcard mode `*` is used to match any sequence of zero or more characters.