diff options
author | Arne Babenhauserheide <arne_bab@web.de> | 2024-10-12 14:07:02 +0200 |
---|---|---|
committer | Arne Babenhauserheide <arne_bab@web.de> | 2024-10-12 14:07:02 +0200 |
commit | c0bfa3219cb9a0b9f5a0185caa1d8c5b5cd33fd2 (patch) | |
tree | fd24524fe924dc94c2149cd1ffb38499d24bf0b5 | |
parent | 8d21dd7eb800868909b694c774015291f8e3aa90 (diff) | |
download | guile-c0bfa3219cb9a0b9f5a0185caa1d8c5b5cd33fd2.tar.gz |
fix typo in comment
module/ice-9/command-line.scm (compile-shell-switches): fix typo
-rw-r--r-- | module/ice-9/command-line.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/ice-9/command-line.scm b/module/ice-9/command-line.scm index 32a56ad11..8ce24d3b5 100644 --- a/module/ice-9/command-line.scm +++ b/module/ice-9/command-line.scm @@ -383,7 +383,7 @@ If FILE begins with `-' the -s switch is mandatory. (parse args (cons '(install-r7rs!) out))) - ((string=? arg "-I") ; silence diagostics + ((string=? arg "-I") ; silence diagnostics (parse args (cons `(current-info-port (%make-void-port "w")) out))) ((string=? arg "--listen") ; start a repl server |