1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

Fix CPS doc typos

* doc/ref/compiler.texi (CPS in Guile): Fix a couple typos.
This commit is contained in:
Andy Wingo 2014-01-12 23:02:34 +01:00
parent fb484fefeb
commit 507c58b28e

View file

@ -678,7 +678,7 @@ expressions.
Declare the mutually recursive set of functions denoted by @var{names}, Declare the mutually recursive set of functions denoted by @var{names},
@var{syms}, and @var{funs} within the sub-term @var{body}. @var{names} @var{syms}, and @var{funs} within the sub-term @var{body}. @var{names}
and @var{syms} are lists of symbols, and @var{funs} is a list of and @var{syms} are lists of symbols, and @var{funs} is a list of
@var{$fun} values. @var{syms} are globally unique. @code{$fun} values. @var{syms} are globally unique.
@end deftp @end deftp
Here is an inventory of the kinds of expressions in Guile's CPS Here is an inventory of the kinds of expressions in Guile's CPS
@ -785,7 +785,7 @@ calling function, if any.
@deftp {CPS Continuation} $kreceive arity k @deftp {CPS Continuation} $kreceive arity k
Receive values on the stack. Parse them according to @var{arity}, and Receive values on the stack. Parse them according to @var{arity}, and
then proceed with the parsed values to the @var{$kargs} continuation then proceed with the parsed values to the @code{$kargs} continuation
labelled @var{k}. As a limitation specific to @code{$kreceive}, labelled @var{k}. As a limitation specific to @code{$kreceive},
@var{arity} may only contain required and rest arguments. @var{arity} may only contain required and rest arguments.
@end deftp @end deftp