diff options
author | Andy Wingo <wingo@pobox.com> | 2014-01-12 23:02:34 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2014-01-16 15:34:08 +0100 |
commit | 507c58b28e94a49e247086dceca7d88109ca8de1 (patch) | |
tree | 4f87706e8fd7d65abb368e04e5210f4380f2ea1c /doc/ref/compiler.texi | |
parent | fb484fefebdd9ebcf43169b391f704069b3d4b09 (diff) | |
download | guile-507c58b28e94a49e247086dceca7d88109ca8de1.tar.gz |
Fix CPS doc typos
* doc/ref/compiler.texi (CPS in Guile): Fix a couple typos.
Diffstat (limited to 'doc/ref/compiler.texi')
-rw-r--r-- | doc/ref/compiler.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/compiler.texi b/doc/ref/compiler.texi index 4e24e8bbf..f8272c30c 100644 --- a/doc/ref/compiler.texi +++ b/doc/ref/compiler.texi @@ -678,7 +678,7 @@ expressions. Declare the mutually recursive set of functions denoted by @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 -@var{$fun} values. @var{syms} are globally unique. +@code{$fun} values. @var{syms} are globally unique. @end deftp 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 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}, @var{arity} may only contain required and rest arguments. @end deftp |