guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] branch main updated: Fix typo in lambda documentation.


From: Daniel Llorens
Subject: [Guile-commits] branch main updated: Fix typo in lambda documentation.
Date: Fri, 21 May 2021 08:04:19 -0400

This is an automated email from the git hooks/post-receive script.

lloda pushed a commit to branch main
in repository guile.

The following commit(s) were added to refs/heads/main by this push:
     new d1c6ae1  Fix typo in lambda documentation.
d1c6ae1 is described below

commit d1c6ae19f4e6ab8b3b607a5b14f65c437c06e065
Author: Luis Felipe <luis.felipe.la@protonmail.com>
AuthorDate: Wed Feb 3 13:23:00 2021 -0500

    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.
---
 doc/ref/api-procedures.texi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/ref/api-procedures.texi b/doc/ref/api-procedures.texi
index 81d2cfc..8c53369 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]