aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/sequences.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispref/sequences.texi')
-rw-r--r--doc/lispref/sequences.texi15
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi
index 4de739aa915..afee255346c 100644
--- a/doc/lispref/sequences.texi
+++ b/doc/lispref/sequences.texi
@@ -1110,9 +1110,9 @@ instead of the default @code{equal}.
1110@cindex sequences, intersection of 1110@cindex sequences, intersection of
1111@cindex intersection of sequences 1111@cindex intersection of sequences
1112 This function returns a copy of @var{sequence1} from which the 1112 This function returns a copy of @var{sequence1} from which the
1113elements that appear in @var{sequence2} where removed. If the optional 1113elements that do not appear in @var{sequence2} were removed. If the
1114argument @var{function} is non-@code{nil}, it is a function of two 1114optional argument @var{function} is non-@code{nil}, it is a function of
1115arguments to use to compare elements instead of the default 1115two arguments to use to compare elements instead of the default
1116@code{equal}. 1116@code{equal}.
1117 1117
1118@example 1118@example
@@ -1125,10 +1125,11 @@ arguments to use to compare elements instead of the default
1125 1125
1126 1126
1127@defun seq-difference sequence1 sequence2 &optional function 1127@defun seq-difference sequence1 sequence2 &optional function
1128 This function returns a list of the elements that appear in 1128 This function returns a copy of @var{sequence1} from which the
1129@var{sequence1} but not in @var{sequence2}. If the optional argument 1129elements that appear in @var{sequence2} were removed. If the optional
1130@var{function} is non-@code{nil}, it is a function of two arguments to 1130argument @var{function} is non-@code{nil}, it is a function of two
1131use to compare elements instead of the default @code{equal}. 1131arguments to use to compare elements instead of the default
1132@code{equal}.
1132 1133
1133@example 1134@example
1134@group 1135@group