summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Felipe <luis.felipe.la@protonmail.com>2021-02-03 13:23:00 -0500
committerDaniel Llorens <lloda@sarc.name>2021-05-21 14:03:46 +0200
commitd1c6ae19f4e6ab8b3b607a5b14f65c437c06e065 (patch)
tree6c4e68dd03dc32f71f1348bf18417ebf516630d5
parentf3a23edf9ed111caab7bbad583874ad34ff8652d (diff)
downloadguile-d1c6ae19f4e6ab8b3b607a5b14f65c437c06e065.tar.gz
Fix typo in lambda documentation.
In the part about lambda formals, change "arguments will converted into" to "arguments will BE converted into". * doc/ref/api-procedures.texi (Lambda: Basic Procedure Creation): Fix typo.
-rw-r--r--doc/ref/api-procedures.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/api-procedures.texi b/doc/ref/api-procedures.texi
index 81d2cfc2d..8c533692c 100644
--- a/doc/ref/api-procedures.texi
+++ b/doc/ref/api-procedures.texi
@@ -67,8 +67,8 @@ called, the arguments will be stored into the newly created location for
the formal variables.
@item @var{variable}
The procedure takes any number of arguments; when the procedure is
-called, the sequence of actual arguments will converted into a list and
-stored into the newly created location for the formal variable.
+called, the sequence of actual arguments will be converted into a list
+and stored into the newly created location for the formal variable.
@item (@var{variable1} @dots{} @var{variablen} . @var{variablen+1})
If a space-delimited period precedes the last variable, then the
procedure takes @var{n} or more variables where @var{n} is the number