* src/data.c (Faref): Fix a typo in the doc string. (Bug#30510)

This commit is contained in:
Eli Zaretskii 2018-02-18 18:36:11 +02:00
parent 36e729f06c
commit 6dc2846a2d

View file

@ -2272,8 +2272,8 @@ function chain of symbols. */)
/* Extract and set vector and string elements. */
DEFUN ("aref", Faref, Saref, 2, 2, 0,
doc: /* Return the element of ARG at index IDX.
ARG may be a vector, a string, a char-table, a bool-vector, a record,
doc: /* Return the element of ARRAY at index IDX.
ARRAY may be a vector, a string, a char-table, a bool-vector, a record,
or a byte-code object. IDX starts at 0. */)
(register Lisp_Object array, Lisp_Object idx)
{