From: Eli Zaretskii Date: Sun, 18 Feb 2018 16:36:11 +0000 (+0200) Subject: * src/data.c (Faref): Fix a typo in the doc string. (Bug#30510) X-Git-Tag: emacs-26.1-rc1~186 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6dc2846a2d6432648e88f76ab0946a4534b81bc0;p=emacs.git * src/data.c (Faref): Fix a typo in the doc string. (Bug#30510) --- diff --git a/src/data.c b/src/data.c index 53a92ac03bb..45b2bf73026 100644 --- a/src/data.c +++ b/src/data.c @@ -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) {