aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2024-02-02 18:33:54 +0200
committerEli Zaretskii2024-02-02 18:33:54 +0200
commite2d1ac2f258a069f950d4df80c8096bfa34081fc (patch)
treea661dde467c9a5fef5b1e3d474e83f8ce12fb86f
parenteb9bdb8948683e9870a3e52d085bf0c57d049130 (diff)
downloademacs-e2d1ac2f258a069f950d4df80c8096bfa34081fc.tar.gz
emacs-e2d1ac2f258a069f950d4df80c8096bfa34081fc.zip
; * doc/lispref/sequences.texi (Sequence Functions): Fix typo.
-rw-r--r--doc/lispref/sequences.texi2
1 files changed, 1 insertions, 1 deletions
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
461with a single argument, an element of @var{sequence}. 461with a single argument, an element of @var{sequence}.
462 462
463This function implements what is known as @dfn{decorate-sort-undecorate} 463This function implements what is known as @dfn{decorate-sort-undecorate}
464paradigm, of the Schwartzian transform. It basically trades CPU for 464paradigm, or the Schwartzian transform. It basically trades CPU for
465memory, creating a temporary list with the computed sort keys, then 465memory, creating a temporary list with the computed sort keys, then
466mapping @code{car} over the result of sorting that temporary list. 466mapping @code{car} over the result of sorting that temporary list.
467Unlike with @code{sort}, the return value is always a new list; the 467Unlike with @code{sort}, the return value is always a new list; the