Removed + to remove potential confusion

This commit is contained in:
Martin Lund 2016-05-23 19:17:09 +02:00
parent 81be02fc03
commit efef2fa254
2 changed files with 2 additions and 2 deletions

View file

@ -63,7 +63,7 @@ void print_help(char *argv[])
printf(" -v, --version Display version\n"); printf(" -v, --version Display version\n");
printf(" -h, --help Display help\n"); printf(" -h, --help Display help\n");
printf("\n"); printf("\n");
printf("In session, press ctrl-t + q to quit.\n"); printf("In session, press ctrl-t q to quit.\n");
printf("\n"); printf("\n");
} }

View file

@ -142,7 +142,7 @@ void stdout_configure(void)
/* Print launch hints */ /* Print launch hints */
tio_printf("tio v%s", VERSION); tio_printf("tio v%s", VERSION);
tio_printf("Press ctrl-t + q to quit"); tio_printf("Press ctrl-t q to quit");
/* Make sure we restore old stdout settings on exit */ /* Make sure we restore old stdout settings on exit */
atexit(&stdout_restore); atexit(&stdout_restore);