diff options
author | Zufu Liu <unknown> | 2019-11-02 08:49:56 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2019-11-02 08:49:56 +1100 |
commit | 07c4766eb4070832a38b065d4e7d1114dc629f88 (patch) | |
tree | 1c0cfc5d6801a8a720d2be48e75c67b9d31c0d56 | |
parent | 9258708542f5d7184620d8e2e4e3aed966182b72 (diff) | |
download | scintilla-mirror-07c4766eb4070832a38b065d4e7d1114dc629f88.tar.gz |
Fix typo in comment.
-rw-r--r-- | win32/ScintillaWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index d72f1958b..e3bc4f711 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -1130,7 +1130,7 @@ sptr_t ScintillaWin::HandleCompositionInline(uptr_t, sptr_t lParam) { return i == SC_INDICATOR_TARGET; }); if (!onlyTarget) { - // CS_NOMOVECARET: keep caret at beginning if composition string which already moved in InsertCharacter(). + // CS_NOMOVECARET: keep caret at beginning of composition string which already moved in InsertCharacter(). // GCS_CURSORPOS: current caret position is provided by IME. Sci::Position imeEndToImeCaretU16 = -static_cast<Sci::Position>(wcs.size()); if (!(lParam & CS_NOMOVECARET) && (lParam & GCS_CURSORPOS)) { |