summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-11-05 20:36:44 -0500
committerGlenn Morris <rgm@gnu.org>2012-11-05 20:36:44 -0500
commit6b3770fb9dd180abbda32383eba5e961e76d7504 (patch)
tree3b4406f24e2b2779a88ea9ba358a85b6b5b9fa61 /lisp/emacs-lisp
parentbff6f2417efbcfa6247648b8750b4bf8f042f9d5 (diff)
downloademacs-6b3770fb9dd180abbda32383eba5e961e76d7504.tar.gz
emacs-6b3770fb9dd180abbda32383eba5e961e76d7504.tar.bz2
emacs-6b3770fb9dd180abbda32383eba5e961e76d7504.zip
* lisp/emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/gv.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/gv.el b/lisp/emacs-lisp/gv.el
index d6c91539a90..3dd021f9e74 100644
--- a/lisp/emacs-lisp/gv.el
+++ b/lisp/emacs-lisp/gv.el
@@ -194,7 +194,7 @@ well for simple place forms.
Assignments of VAL to (NAME ARGS...) are expanded by binding the argument
forms (VAL ARGS...) according to ARGLIST, then executing BODY, which must
return a Lisp form that does the assignment.
-The first arg in ARLIST (the one that receives VAL) receives an expression
+The first arg in ARGLIST (the one that receives VAL) receives an expression
which can do arbitrary things, whereas the other arguments are all guaranteed
to be pure and copyable. Example use:
(gv-define-setter aref (v a i) `(aset ,a ,i ,v))"