aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/RESearch.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2020-03-26 09:28:15 +1100
committerNeil <nyamatongwe@gmail.com>2020-03-26 09:28:15 +1100
commit808e00138126f7ce571fd905498dba6614c16278 (patch)
tree8e6fd9ed479c7a2a12ec73fed9bff305806986ff /src/RESearch.cxx
parent878a934343d10fb3f5412c06522db2f46570c1bb (diff)
downloadscintilla-mirror-808e00138126f7ce571fd905498dba6614c16278.tar.gz
Backport: Fix spelling mistakes.
Backport of changeset 8028:78a688809e75.
Diffstat (limited to 'src/RESearch.cxx')
-rw-r--r--src/RESearch.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/RESearch.cxx b/src/RESearch.cxx
index dd9cb75af..a682016bc 100644
--- a/src/RESearch.cxx
+++ b/src/RESearch.cxx
@@ -139,7 +139,7 @@
* W: any char except alphanumeric & underscore (see above)
*
* [12] \xHH a backslash followed by x and two hexa digits,
- * becomes the character whose Ascii code is equal
+ * becomes the character whose ASCII code is equal
* to these digits. If not followed by two digits,
* it is 'x' char itself.
*
@@ -350,7 +350,7 @@ int RESearch::GetBackslashExpression(
int &incr) noexcept {
// Since error reporting is primitive and messages are not used anyway,
// I choose to interpret unexpected syntax in a logical way instead
- // of reporting errors. Otherwise, we can stick on, eg., PCRE behavior.
+ // of reporting errors. Otherwise, we can stick on, eg., PCRE behaviour.
incr = 0; // Most of the time, will skip the char "naturally".
int c;
int result = -1;