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 /lexers/LexPython.cxx | |
| parent | 878a934343d10fb3f5412c06522db2f46570c1bb (diff) | |
| download | scintilla-mirror-808e00138126f7ce571fd905498dba6614c16278.tar.gz | |
Backport: Fix spelling mistakes.
Backport of changeset 8028:78a688809e75.
Diffstat (limited to 'lexers/LexPython.cxx')
| -rw-r--r-- | lexers/LexPython.cxx | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lexers/LexPython.cxx b/lexers/LexPython.cxx index 836f76155..c7df7252b 100644 --- a/lexers/LexPython.cxx +++ b/lexers/LexPython.cxx @@ -192,7 +192,7 @@ inline bool IsAWordChar(int ch, bool unicodeIdentifiers) {  	if (!unicodeIdentifiers)  		return false; -	// Python uses the XID_Continue set from unicode data +	// Python uses the XID_Continue set from Unicode data  	return IsXidContinue(ch);  } @@ -203,7 +203,7 @@ inline bool IsAWordStart(int ch, bool unicodeIdentifiers) {  	if (!unicodeIdentifiers)  		return false; -	// Python uses the XID_Start set from unicode data +	// Python uses the XID_Start set from Unicode data  	return IsXidStart(ch);  } @@ -300,7 +300,7 @@ struct OptionSetPython : public OptionSet<OptionsPython> {  		DefineProperty("fold.compact", &OptionsPython::foldCompact);  		DefineProperty("lexer.python.unicode.identifiers", &OptionsPython::unicodeIdentifiers, -			       "Set to 0 to not recognise Python 3 unicode identifiers."); +			       "Set to 0 to not recognise Python 3 Unicode identifiers.");  		DefineWordListSets(pythonWordListDesc);  	} | 
