diff options
Diffstat (limited to 'src/textadept.c')
-rw-r--r-- | src/textadept.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/textadept.c b/src/textadept.c index ace653ed..2d9c06a8 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -1811,7 +1811,7 @@ static bool exiting(GtkWidget *_, GdkEventAny *__, void *L) { #if (__APPLE__ && !CURSES) /** - * Signal for opening files from OSX. + * Signal for opening files from macOS. * Generates an 'appleevent_odoc' event for each document sent. */ static bool open_file(GtkosxApplication*_, char *path, void *L) { @@ -1819,7 +1819,7 @@ static bool open_file(GtkosxApplication*_, char *path, void *L) { } /** - * Signal for block terminating Textadept from OSX. + * Signal for block terminating Textadept from macOS. * Generates a 'quit' event. */ static bool terminating(GtkosxApplication *_, void *L) { @@ -1827,7 +1827,7 @@ static bool terminating(GtkosxApplication *_, void *L) { } /** - * Signal for terminating Textadept from OSX. + * Signal for terminating Textadept from macOS. * Closes the Lua state and releases resources. * @see close_lua */ |