os.c doc formatting typo

This commit is contained in:
John Gabriele 2022-04-29 23:57:37 -04:00 committed by GitHub
parent 9fa945ad93
commit 473eec26c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1076,7 +1076,7 @@ JANET_CORE_FN(os_spawn,
"to get streams for standard IO of the subprocess that can be read from and written to."
"The returned value `proc` has the fields :in, :out, :err, :return-code, and "
"the additional field :pid on unix-like platforms. Use `(os/proc-wait proc)` to rejoin the "
"subprocess or (os/proc-kill proc)`") {
"subprocess or `(os/proc-kill proc)`.") {
return os_execute_impl(argc, argv, 1);
}