diff options
author | Dominique Pelle <dominique.pelle@gmail.com> | 2021-12-27 17:21:41 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-27 17:21:41 +0000 |
commit | af4a61a85d6e8cacc35324f266934bc463a21673 (patch) | |
tree | 3b2e75b8a36bc8e79d2bc407d929a84b69fd0e0c /src/os_mswin.c | |
parent | 5da36052a4bb0f3a9747ec3a8ab9d85e058e39fa (diff) | |
download | vim-git-af4a61a85d6e8cacc35324f266934bc463a21673.tar.gz |
patch 8.2.3914: various spelling mistakes in commentsv8.2.3914
Problem: Various spelling mistakes in comments.
Solution: Fix the mistakes. (Dominique Pellé, closes #9416)
Diffstat (limited to 'src/os_mswin.c')
-rw-r--r-- | src/os_mswin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_mswin.c b/src/os_mswin.c index b6393db5a..26042b498 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -1907,7 +1907,7 @@ HWND message_window = 0; // window that's handling messages # define VIM_CLASSNAME "VIM_MESSAGES" # define VIM_CLASSNAME_LEN (sizeof(VIM_CLASSNAME) - 1) -// Communication is via WM_COPYDATA messages. The message type is send in +// Communication is via WM_COPYDATA messages. The message type is sent in // the dwData parameter. Types are defined here. # define COPYDATA_KEYS 0 # define COPYDATA_REPLY 1 @@ -2375,7 +2375,7 @@ serverSendToVim( return sendToLocalVim(cmd, asExpr, result); // If the server name does not end in a digit then we look for an - // alternate name. e.g. when "name" is GVIM the we may find GVIM2. + // alternate name. e.g. when "name" is GVIM then we may find GVIM2. if (STRLEN(name) > 1 && !vim_isdigit(name[STRLEN(name) - 1])) altname_buf_ptr = altname_buf; altname_buf[0] = NUL; |