diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-11-16 16:21:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-11-16 16:21:05 +0100 |
commit | c4568ab37edc01e01f258d64bceddcd01633a268 (patch) | |
tree | 8ae92c661dad3bde1055513daa15ce703d3632f7 /src/gui_mac.c | |
parent | f0d58efc9dc46be37c629cbc99b4125448ca39fd (diff) | |
download | vim-git-c4568ab37edc01e01f258d64bceddcd01633a268.tar.gz |
patch 8.1.0528: various typos in commentsv8.1.0528
Problem: Various typos in comments.
Solution: Fix the typos.
Diffstat (limited to 'src/gui_mac.c')
-rw-r--r-- | src/gui_mac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c index aa093a334..96f04c55a 100644 --- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -2278,7 +2278,7 @@ gui_mac_doKeyEvent(EventRecord *theEvent) if (p_mh) ObscureCursor(); - /* Get the key code and it's ASCII representation */ + /* Get the key code and its ASCII representation */ key_sym = ((theEvent->message & keyCodeMask) >> 8); key_char = theEvent->message & charCodeMask; num = 1; @@ -2597,7 +2597,7 @@ gui_mac_mouse_wheel(EventHandlerCallRef nextHandler, EventRef theEvent, bail: /* * when we fail give any additional callback handler a chance to perform - * it's actions + * its actions */ return CallNextEventHandler(nextHandler, theEvent); } |