From: Eli Zaretskii Date: Fri, 2 Feb 2024 16:33:54 +0000 (+0200) Subject: ; * doc/lispref/sequences.texi (Sequence Functions): Fix typo. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9784bb63514c3114cf8959a86194750c3264750e;p=emacs.git ; * doc/lispref/sequences.texi (Sequence Functions): Fix typo. (cherry picked from commit e2d1ac2f258a069f950d4df80c8096bfa34081fc) --- diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi index 068b69e9ef8..74719d4779f 100644 --- a/doc/lispref/sequences.texi +++ b/doc/lispref/sequences.texi @@ -461,7 +461,7 @@ each element of @var{sequence}. The @var{accessor} function is called with a single argument, an element of @var{sequence}. This function implements what is known as @dfn{decorate-sort-undecorate} -paradigm, of the Schwartzian transform. It basically trades CPU for +paradigm, or the Schwartzian transform. It basically trades CPU for memory, creating a temporary list with the computed sort keys, then mapping @code{car} over the result of sorting that temporary list. Unlike with @code{sort}, the return value is always a new list; the