summaryrefslogtreecommitdiffstats
path: root/src/if_ole.cpp
diff options
context:
space:
mode:
authorDominique Pelle <dominique.pelle@gmail.com>2023-04-14 21:54:25 +0100
committerBram Moolenaar <Bram@vim.org>2023-04-14 21:54:25 +0100
commitb49dfd0cf296623af2d756cefc3e73b5b307734e (patch)
tree8a59f6d5a0ead1dfa0cc1bfda8aaace3f7d7959b /src/if_ole.cpp
parentb7f6f93475a3ad5c590a09a2577fd51590bea9e1 (diff)
patch 9.0.1453: typos in source code and testsv9.0.1453
Problem: Typos in source code and tests. Solution: Fi the typos. (Dominique Pellé, closes #12217)
Diffstat (limited to 'src/if_ole.cpp')
-rw-r--r--src/if_ole.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_ole.cpp b/src/if_ole.cpp
index 9dc15fda27..f347387a90 100644
--- a/src/if_ole.cpp
+++ b/src/if_ole.cpp
@@ -334,7 +334,7 @@ CVim::SendKeys(BSTR keys)
/* Reject strings too long to fit in the input buffer. Allow 10 bytes
* space to cover for the (remote) possibility that characters may enter
* the input buffer between now and when the WM_OLE message is actually
- * processed. If more that 10 characters enter the input buffer in that
+ * processed. If more than 10 characters enter the input buffer in that
* time, the WM_OLE processing will simply fail to insert the characters.
*/
if ((int)(STRLEN(str)) > (vim_free_in_input_buf() - 10))