summaryrefslogtreecommitdiffstats
path: root/scintilla/lexlib/CharacterCategory.cxx
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2014-06-30 10:58:02 +0300
committerXhmikosR <xhmikosr@gmail.com>2014-07-03 12:38:18 +0300
commit666822715a5f1f919d039ea4aed50effbf8fb984 (patch)
treed8e03b027a0c929d73dc63fd1f1c1764e600c003 /scintilla/lexlib/CharacterCategory.cxx
parent80a1ee6430295f30fe78271398e78d13cd9a9d93 (diff)
downloadnotepad2-mod-666822715a5f1f919d039ea4aed50effbf8fb984.zip
notepad2-mod-666822715a5f1f919d039ea4aed50effbf8fb984.tar.gz
notepad2-mod-666822715a5f1f919d039ea4aed50effbf8fb984.tar.bz2
Update Scintilla to 3.4.4.
Diffstat (limited to 'scintilla/lexlib/CharacterCategory.cxx')
-rw-r--r--scintilla/lexlib/CharacterCategory.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/scintilla/lexlib/CharacterCategory.cxx b/scintilla/lexlib/CharacterCategory.cxx
index 765469a..2be46c0 100644
--- a/scintilla/lexlib/CharacterCategory.cxx
+++ b/scintilla/lexlib/CharacterCategory.cxx
@@ -3287,7 +3287,7 @@ const int nRanges = ELEMENTS(catRanges);
// Initial version has 3249 entries and adds about 13K to the executable.
// The array is in ascending order so can be searched using binary search.
// Therefore the average call takes log2(3249) = 12 comparisons.
-// For speed, it may be an useful to make a linear table for the common values,
+// For speed, it may be useful to make a linear table for the common values,
// possibly for 0..0xff for most Western European text or 0..0xfff for most
// alphabetic languages.