bug#46273: Fix typo in lambda documentation
luis.felipe.la--- via "Bug reports for GUILE, GNU's Ubiquitous Extension Language" <[email protected]>
| Newsgroups | gmane.lisp.guile.bugs |
|---|---|
| Message-ID | <TKKzQzogLK1rIuN2Ai-ByEd8x4Zcbfp6_seR1l1CnuRii8QihqSUvG8G5f4eyl2WxViT7ecgC8f1xm3sR_AjdMr95-1md504M9MEkxTauXU=@protonmail.com> |
In the part about lambda formals, change "arguments will converted into" to "arguments will BE converted into". --- Luis Felipe López Acevedo https://luis-felipe.gitlab.io/
0001-Fix-typo-in-lambda-documentation.patch
(text/x-patch, 1.4 KB)
From 16e5614682cad87aab26370f149d2c5a6b4f7362 Mon Sep 17 00:00:00 2001 From: Luis Felipe <[email protected]> Date: Wed, 3 Feb 2021 13:23:00 -0500 Subject: [PATCH] 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 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 base-commit: 480d86df6847deb55db6731811407c268d2254ed -- 2.30.0