summaryrefslogtreecommitdiffstats
path: root/src/gui_mac.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-11-16 16:21:05 +0100
committerBram Moolenaar <Bram@vim.org>2018-11-16 16:21:05 +0100
commitc4568ab37edc01e01f258d64bceddcd01633a268 (patch)
tree8ae92c661dad3bde1055513daa15ce703d3632f7 /src/gui_mac.c
parentf0d58efc9dc46be37c629cbc99b4125448ca39fd (diff)
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c
index aa093a3343..96f04c55a3 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);
}