aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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