summaryrefslogtreecommitdiff
path: root/doc/lispref/sequences.texi
diff options
context:
space:
mode:
authorDamien Cassou <damien@cassou.me>2022-09-04 13:00:22 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-09-04 13:00:22 +0200
commit77b761dafaf65d57dd05ecd586884340fa4e63e2 (patch)
treefbe9e9fa8870622b04b1b69fea72d56aeb88d361 /doc/lispref/sequences.texi
parent40de3684fb824c797fa942ad5f99ca319aa34881 (diff)
downloademacs-77b761dafaf65d57dd05ecd586884340fa4e63e2.tar.gz
Improve documentation of several functions in seq.el
* doc/lispref/sequences.texi (Sequence Functions): * lisp/emacs-lisp/seq.el (seq-contains): (seq-contains-p): (seq-set-equal-p): (seq-position): (seq-union): (seq-intersection): (seq-difference): Use more standard wording in the docstrings (bug#57561).
Diffstat (limited to 'doc/lispref/sequences.texi')
-rw-r--r--doc/lispref/sequences.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi
index 1f6f80521c0..cc956952d6f 100644
--- a/doc/lispref/sequences.texi
+++ b/doc/lispref/sequences.texi
@@ -863,7 +863,7 @@ arguments to use instead of the default @code{equal}.
@end defun
@defun seq-position sequence elt &optional function
- This function returns the index of the first element in
+ This function returns the (zero-based) index of the first element in
@var{sequence} that is equal to @var{elt}. If the optional argument
@var{function} is non-@code{nil}, it is a function of two arguments to
use instead of the default @code{equal}.