diff options
| author | Eli Zaretskii | 2024-02-02 18:33:54 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2024-02-02 18:33:54 +0200 |
| commit | e2d1ac2f258a069f950d4df80c8096bfa34081fc (patch) | |
| tree | a661dde467c9a5fef5b1e3d474e83f8ce12fb86f | |
| parent | eb9bdb8948683e9870a3e52d085bf0c57d049130 (diff) | |
| download | emacs-e2d1ac2f258a069f950d4df80c8096bfa34081fc.tar.gz emacs-e2d1ac2f258a069f950d4df80c8096bfa34081fc.zip | |
; * doc/lispref/sequences.texi (Sequence Functions): Fix typo.
| -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 |