diff options
author | Ethan Stefan Day <esday@ethan-stefan.net> | 2016-08-07 23:38:57 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2016-08-07 23:40:16 +0200 |
commit | 96d3cb3fcf834f3e017ad69548c89bcf61f3a19c (patch) | |
tree | 654e5f7684e1afd6de3982a244e03ff7e230ec55 /doc/ref/api-control.texi | |
parent | 469970d4b35e973b1fae969a4781a06d6abf0ba4 (diff) | |
download | guile-96d3cb3fcf834f3e017ad69548c89bcf61f3a19c.tar.gz |
Documentation fixes
* doc/ref/api-compound.texi:
* doc/ref/api-control.texi:
* doc/ref/api-data.texi: Fix typos and clarify.
Diffstat (limited to 'doc/ref/api-control.texi')
-rw-r--r-- | doc/ref/api-control.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/api-control.texi b/doc/ref/api-control.texi index 10a445cb0..5847b25de 100644 --- a/doc/ref/api-control.texi +++ b/doc/ref/api-control.texi @@ -168,7 +168,7 @@ Each @code{cond}-clause must look like this: (@var{test} @var{expression} @dots{}) @end lisp -where @var{test} and @var{expression} are arbitrary expression, or like +where @var{test} and @var{expression} are arbitrary expressions, or like this @lisp @@ -178,7 +178,7 @@ this where @var{expression} must evaluate to a procedure. The @var{test}s of the clauses are evaluated in order and as soon as one -of them evaluates to a true values, the corresponding @var{expression}s +of them evaluates to a true value, the corresponding @var{expression}s are evaluated in order and the last value is returned as the value of the @code{cond}-expression. For the @code{=>} clause type, @var{expression} is evaluated and the resulting procedure is applied to @@ -894,7 +894,7 @@ a new values object, and copies into it the @var{n} values starting from @var{base}. Currently this creates a list and passes it to @code{scm_values}, but we -expect that in the future we will be able to use more a efficient +expect that in the future we will be able to use a more efficient representation. @end deftypefn |