summaryrefslogtreecommitdiffstats
path: root/src/regex.h
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/regex.h
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/regex.h')
-rw-r--r--src/regex.h2
1 files changed, 1 insertions, 1 deletions
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.