diff options
author | Neil <nyamatongwe@gmail.com> | 2020-03-26 09:28:15 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2020-03-26 09:28:15 +1100 |
commit | 5e1f3c9b721f436cd60961af3df53734f10deedf (patch) | |
tree | 36499b447ce0b871aafdd1bd23716b120d70ed27 /src/Document.cxx | |
parent | 46d00d15940a78ba6cd5fb5b884e08d0394c3abe (diff) | |
download | scintilla-mirror-5e1f3c9b721f436cd60961af3df53734f10deedf.tar.gz |
Fix spelling mistakes.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index d60cef3bb..2c2d86de6 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -1773,7 +1773,7 @@ CharClassify::cc Document::WordCharacterClass(unsigned int ch) const { } /** - * Used by commmands that want to select whole words. + * Used by commands that want to select whole words. * Finds the start of word at pos when delta < 0 or the end of the word when delta >= 0. */ Sci::Position Document::ExtendWordSelect(Sci::Position pos, int delta, bool onlyWordCharacters) const { @@ -3063,7 +3063,7 @@ Sci::Position Cxx11RegexFindText(const Document *doc, Sci::Position minPos, Sci: try { //ElapsedPeriod ep; std::regex::flag_type flagsRe = std::regex::ECMAScript; - // Flags that apper to have no effect: + // Flags that appear to have no effect: // | std::regex::collate | std::regex::extended; if (!caseSensitive) flagsRe = flagsRe | std::regex::icase; |