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 | 5e1f3c9b721f436cd60961af3df53734f10deedf (patch) | |
tree | 36499b447ce0b871aafdd1bd23716b120d70ed27 /src/AutoComplete.h | |
parent | 46d00d15940a78ba6cd5fb5b884e08d0394c3abe (diff) | |
download | scintilla-mirror-5e1f3c9b721f436cd60961af3df53734f10deedf.tar.gz |
Fix spelling mistakes.
Diffstat (limited to 'src/AutoComplete.h')
-rw-r--r-- | src/AutoComplete.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AutoComplete.h b/src/AutoComplete.h index 6440c13d4..c5b40ad14 100644 --- a/src/AutoComplete.h +++ b/src/AutoComplete.h @@ -17,7 +17,7 @@ class AutoComplete { std::string stopChars; std::string fillUpChars; char separator; - char typesep; // Type seperator + char typesep; // Type separator enum { maxItemLen=1000 }; std::vector<int> sortMatrix; @@ -28,7 +28,7 @@ public: std::unique_ptr<ListBox> lb; Sci::Position posStart; Sci::Position startLen; - /// Should autocompletion be canceled if editor's currentPos <= startPos? + /// Should autocompletion be cancelled if editor's currentPos <= startPos? bool cancelAtStartPos; bool autoHide; bool dropRestOfWord; |