aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexPython.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
commit5e1f3c9b721f436cd60961af3df53734f10deedf (patch)
tree36499b447ce0b871aafdd1bd23716b120d70ed27 /lexers/LexPython.cxx
parent46d00d15940a78ba6cd5fb5b884e08d0394c3abe (diff)
downloadscintilla-mirror-5e1f3c9b721f436cd60961af3df53734f10deedf.tar.gz
Fix spelling mistakes.
Diffstat (limited to 'lexers/LexPython.cxx')
-rw-r--r--lexers/LexPython.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lexers/LexPython.cxx b/lexers/LexPython.cxx
index 24a11e3b0..fc1d8584e 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);
}