commit e04bd49636ef3490a8f4845189e4c9c9cfa1b059 parent a8c4da5b955eab2eed9ebb03ee4b1212ec6fe042 Author: Sebastiano Tronto <sebastiano.tronto@gmail.com> Date: Sat, 20 Nov 2021 16:20:48 +0100 Fix typo in welcome message Diffstat:
M | src/shell.c | | | 5 | +++-- |
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git 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-# ");