diff options
Diffstat (limited to 'lisp/emacs-lisp/seq.el')
-rw-r--r-- | lisp/emacs-lisp/seq.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index 6a386bdceff..d4a9139758d 100644 --- a/lisp/emacs-lisp/seq.el +++ b/lisp/emacs-lisp/seq.el @@ -94,7 +94,7 @@ name to be bound to the rest of SEQ." (elt seq n)) ;; Default gv setters for `seq-elt'. -;; It can be a good idea for new sequence impelentations to provide a +;; It can be a good idea for new sequence implementations to provide a ;; "gv-setter" for `seq-elt'. (cl-defmethod (setf seq-elt) (store (seq array) n) (aset seq n store)) |