diff options
| author | Glenn Morris | 2015-04-15 09:11:15 -0700 |
|---|---|---|
| committer | Glenn Morris | 2015-04-15 09:11:15 -0700 |
| commit | cc4705f693471650a10ec51c8eb54c7ffe873045 (patch) | |
| tree | 13a8f87d0652e4542d6e93803c67abb8b20f3704 | |
| parent | cb75e80b2091b7d61376d42822d3a1dd67325543 (diff) | |
| download | emacs-cc4705f693471650a10ec51c8eb54c7ffe873045.tar.gz emacs-cc4705f693471650a10ec51c8eb54c7ffe873045.zip | |
* doc/lispref/sequences.texi (Sequence Functions): Fix typo in previous.
| -rw-r--r-- | doc/lispref/sequences.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi index 334b3478cb6..e1330f7d594 100644 --- a/doc/lispref/sequences.texi +++ b/doc/lispref/sequences.texi | |||
| @@ -732,7 +732,7 @@ use to compare elements instead of the default @code{equal}. | |||
| 732 | @example | 732 | @example |
| 733 | @group | 733 | @group |
| 734 | (seq-intersection [2 3 4 5] [1 3 5 6 7]) | 734 | (seq-intersection [2 3 4 5] [1 3 5 6 7]) |
| 735 | @result {} (3 5) | 735 | @result{} (3 5) |
| 736 | @end group | 736 | @end group |
| 737 | @end example | 737 | @end example |
| 738 | @end defun | 738 | @end defun |
| @@ -747,7 +747,7 @@ use to compare elements instead of the default @code{equal}. | |||
| 747 | @example | 747 | @example |
| 748 | @group | 748 | @group |
| 749 | (seq-difference '(2 3 4 5) [1 3 5 6 7]) | 749 | (seq-difference '(2 3 4 5) [1 3 5 6 7]) |
| 750 | @result {} (2 4) | 750 | @result{} (2 4) |
| 751 | @end group | 751 | @end group |
| 752 | @end example | 752 | @end example |
| 753 | @end defun | 753 | @end defun |