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 | 808e00138126f7ce571fd905498dba6614c16278 (patch) | |
| tree | 8e6fd9ed479c7a2a12ec73fed9bff305806986ff /src/Document.cxx | |
| parent | 878a934343d10fb3f5412c06522db2f46570c1bb (diff) | |
| download | scintilla-mirror-808e00138126f7ce571fd905498dba6614c16278.tar.gz | |
Backport: Fix spelling mistakes.
Backport of changeset 8028:78a688809e75.
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 4dd2f9fd6..d85b71106 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -1776,7 +1776,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 { @@ -3066,7 +3066,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; | 
