From e04bd49636ef3490a8f4845189e4c9c9cfa1b059 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sat, 20 Nov 2021 16:20:48 +0100 Subject: Fix typo in welcome message --- src/shell.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/shell.c b/src/shell.c index 0880f8a..a23ea06 100644 --- a/src/shell.c +++ b/src/shell.c @@ -64,8 +64,9 @@ launch() for (i = 0; i < MAXNTOKENS; i++) shell_argv[i] = malloc((MAXTOKENLEN+1) * sizeof(char)); - fprintf(stderr, "Welcome to Nissy "VERSION".\n"); - fprintf(stderr, "Type 'help' for a list.\n"); + fprintf(stderr, "Welcome to Nissy "VERSION".\n" + "Type \"commands\" for a list of commands.\n" + ); while (true) { fprintf(stderr, "nissy-# "); -- cgit v1.3