aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-06-22 10:35:44 +1000
committerNeil <nyamatongwe@gmail.com>2014-06-22 10:35:44 +1000
commitfe3019fa1b99bb5d5f7e58cda19a3f1af5d2d74d (patch)
tree89b8a512c5d740c4e8a062c6227c7775df32fa9c
parent4b65e052bf2b3566bd50e6ba812e153e2a85e2b2 (diff)
downloadscintilla-mirror-fe3019fa1b99bb5d5f7e58cda19a3f1af5d2d74d.tar.gz
Typo.
-rw-r--r--lexlib/CharacterCategory.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlib/CharacterCategory.cxx b/lexlib/CharacterCategory.cxx
index 765469a3f..2be46c013 100644
--- a/lexlib/CharacterCategory.cxx
+++ b/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.