diff options
| -rw-r--r-- | doc/lispref/sequences.texi | 2 |
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 | |||
| 461 | with a single argument, an element of @var{sequence}. | 461 | with a single argument, an element of @var{sequence}. |
| 462 | 462 | ||
| 463 | This function implements what is known as @dfn{decorate-sort-undecorate} | 463 | This function implements what is known as @dfn{decorate-sort-undecorate} |
| 464 | paradigm, of the Schwartzian transform. It basically trades CPU for | 464 | paradigm, or the Schwartzian transform. It basically trades CPU for |
| 465 | memory, creating a temporary list with the computed sort keys, then | 465 | memory, creating a temporary list with the computed sort keys, then |
| 466 | mapping @code{car} over the result of sorting that temporary list. | 466 | mapping @code{car} over the result of sorting that temporary list. |
| 467 | Unlike with @code{sort}, the return value is always a new list; the | 467 | Unlike with @code{sort}, the return value is always a new list; the |