; * doc/lispref/sequences.texi (Sequence Functions): Fix typo.

This commit is contained in:
Eli Zaretskii 2024-02-02 18:33:54 +02:00
parent eb9bdb8948
commit e2d1ac2f25

View file

@ -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