Merge pull request #741 from phillbush/master

Fix typo in comment.
This commit is contained in:
Alex Shinn 2021-05-03 22:54:47 +09:00 committed by GitHub
commit 4df0513d6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
main.c
View file

@ -317,7 +317,7 @@ sexp run_main (int argc, char **argv) {
main_symbol = "main"; main_symbol = "main";
/* skip option parsing since we can't pass `--` before the name of script */ /* skip option parsing since we can't pass `--` before the name of script */
/* to avoid misinterpret the name as options when the interpreter is */ /* to avoid misinterpret the name as options when the interpreter is */
/* executed via `#!/usr/env/bin scheme-r7rs` shebang. */ /* executed via `#!/usr/bin/env scheme-r7rs` shebang. */
i = 1; i = 1;
goto done_options; goto done_options;
} }