Fix a few typos in the existing docs.

This commit is contained in:
Leif Andersen 2016-07-23 01:23:32 -04:00
parent e5ff658875
commit 933a494fe0
2 changed files with 3 additions and 1 deletions

View File

@ -192,6 +192,8 @@ Applies the procedure @var{f} to the given arguments.
Beware that the procedure can mutate @var{args} if it is the same as Beware that the procedure can mutate @var{args} if it is the same as
the result of @cpp{scheme_current_argument_stack}.} the result of @cpp{scheme_current_argument_stack}.}
If @var{c} is @cpp{0}, then @var{args} can be @cpp{NULL}.
@function[(Scheme_Object* scheme_apply_multi @function[(Scheme_Object* scheme_apply_multi
[Scheme_Object* f] [Scheme_Object* f]
[int c] [int c]

View File

@ -697,7 +697,7 @@ Creates a Scheme input file port from an ANSI C file pointer. The file
[const-char* filename] [const-char* filename]
[const-char* who])]{ [const-char* who])]{
Opens @var{filename} for reading. In an exception is raised, the Opens @var{filename} for reading. If an exception is raised, the
exception message uses @var{who} as the name of procedure that raised exception message uses @var{who} as the name of procedure that raised
the exception.} the exception.}