aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorZufu Liu <unknown>2019-11-02 08:49:56 +1100
committerZufu Liu <unknown>2019-11-02 08:49:56 +1100
commit07c4766eb4070832a38b065d4e7d1114dc629f88 (patch)
tree1c0cfc5d6801a8a720d2be48e75c67b9d31c0d56
parent9258708542f5d7184620d8e2e4e3aed966182b72 (diff)
downloadscintilla-mirror-07c4766eb4070832a38b065d4e7d1114dc629f88.tar.gz
Fix typo in comment.
-rw-r--r--win32/ScintillaWin.cxx2
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)) {