diff options
| author | Daniel Cerqueira <dan.git@lispclub.com> | 2026-06-16 15:53:05 +0100 |
|---|---|---|
| committer | Daniel Cerqueira <dan.git@lispclub.com> | 2026-06-16 15:53:05 +0100 |
| commit | dde279674db62efd0992a42d2644d45d40dfdcf1 (patch) | |
| tree | 69b62bf68343c9e40c196faa4a65efd2c8e8a7e7 | |
| parent | b65c56732a9ce4169a5ae7669e16968b53ef89cd (diff) | |
text correction in --help output
| -rw-r--r-- | lali.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -92,7 +92,7 @@ int main(int argc, char *argv[]) { if (argc >= 2) { if (!strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) { - fprintf(stderr, "basic usages:\nnormal: %s [file]...\nclose stdin: %s -c [file]...\nrun repl: %s -r [-q] [file]...\n\nin normal mode, reads from standard input.\nwhen present, load file(s) at startup. can be used as library file(s).\n", argv[0], argv[0], argv[0]); + fprintf(stderr, "basic usages:\nnormal: %s [source]...\nclose stdin: %s -c [source]...\nrun repl: %s -r [-q] [source]...\n\nin normal mode, reads from standard input.\nwhen present, load source(s) at startup. can be used as library sources(s).\n", argv[0], argv[0], argv[0]); return EXIT_SUCCESS; } else if (!strcmp(argv[1], "-c")) { options++; |
