diff options
author | nyamatongwe <devnull@localhost> | 2010-05-02 00:06:01 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-05-02 00:06:01 +0000 |
commit | cd6d44de2ad5b93909c50db3cf467821db392f75 (patch) | |
tree | 2f6dee1cbfd0205f0cae6784609eb094f3299ba8 /src/Editor.cxx | |
parent | e41eecbf8bcc23eba2e3a3e928b8ec2963bc71d2 (diff) | |
download | scintilla-mirror-cd6d44de2ad5b93909c50db3cf467821db392f75.tar.gz |
Bug #2995278 minor fixes to typos and types.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 61a349f04..074470f5f 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -1850,7 +1850,7 @@ bool BadUTF(const char *s, int len, int &trailBytes) { return true; if (GoodTrailByte(us[1]) && GoodTrailByte(us[2]) && GoodTrailByte(us[3])) { if (*us == 0xf4) { - // Chcek if encoding a value beyond the last Unicode character 10FFFF + // Check if encoding a value beyond the last Unicode character 10FFFF if (us[1] > 0x8f) { return true; } else if (us[1] == 0x8f) { |