aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2022-11-02 17:19:46 +0100
committerJuanma Barranquero2022-11-02 17:19:46 +0100
commit62d40f27b2467a5eeaefec37fea305bda54f6524 (patch)
treef484d901929c63453b609245c181ecbdd3047bab
parentb035db7a313ce541cb49f9a4f57167a6a44b80c9 (diff)
downloademacs-62d40f27b2467a5eeaefec37fea305bda54f6524.tar.gz
emacs-62d40f27b2467a5eeaefec37fea305bda54f6524.zip
; * doc/misc/cl.texi (Mapping over Sequences): Fix typos.
-rw-r--r--doc/misc/cl.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi
index e4b344f2674..41499d19535 100644
--- a/doc/misc/cl.texi
+++ b/doc/misc/cl.texi
@@ -3381,9 +3381,9 @@ true for all elements.
3381 3381
3382@defun cl-reduce function seq @t{&key :from-end :start :end :initial-value :key} 3382@defun cl-reduce function seq @t{&key :from-end :start :end :initial-value :key}
3383This function returns the result of calling @var{function} on the 3383This function returns the result of calling @var{function} on the
3384first and second element of @var{seq}, then calling @var{function} 3384first and second elements of @var{seq}, then calling @var{function}
3385with that result and the third element of @var{seq}, then with that 3385with that result and the third element of @var{seq}, then with that
3386result and the third element of @var{seq}, etc. 3386result and the fourth element of @var{seq}, etc.
3387 3387
3388Here is an example. Suppose @var{function} is @code{*} and @var{seq} 3388Here is an example. Suppose @var{function} is @code{*} and @var{seq}
3389is the list @code{(2 3 4 5)}. The first two elements of the list are 3389is the list @code{(2 3 4 5)}. The first two elements of the list are