Text improvements

This commit is contained in:
Mario Hüttel 2019-10-03 11:57:16 +02:00
parent a48fe9ab58
commit 13e202424b
1 changed files with 2 additions and 2 deletions

4
main.c
View File

@ -133,7 +133,7 @@ static const GActionEntry app_actions[] = {
* @brief Called when a GUI main window is closed
*
* The GdsRenderGui object associated with the closed main window
* is removed from the list of open GUIs (\p user_data) and unreferenced.
* is removed from the list of open GUIs (\p user_data) and dereferenced.
*
* @param gui The GUI instance the closed main window belongs to
* @param user_data List of GUIs
@ -198,7 +198,7 @@ static int start_gui(int argc, char **argv)
if (g_application_get_is_remote(G_APPLICATION(gapp)) == TRUE) {
g_application_activate(G_APPLICATION(gapp));
printf("There is already an open instance. Will open second window in said instance.\n");
printf("There is already an open instance. Will open second window in that instance.\n");
return 0;
}