summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDani Moncayo <dmoncayo@gmail.com>2011-09-13 23:52:54 -0700
committerGlenn Morris <rgm@gnu.org>2011-09-13 23:52:54 -0700
commitbf1af6c7863eb672781fef5725b097d2f1700618 (patch)
treee711ef22ece12d7748208ede52e25c21d9e6647e /doc
parent46888499da0bb61ce47d339275d5a0c757a02eb2 (diff)
downloademacs-bf1af6c7863eb672781fef5725b097d2f1700618.tar.gz
* doc/lispref/lists.texi (Sets And Lists): Fix typo. (tiny change)
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/lists.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 4873680d0a1..71dc8a8ff89 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
+2011-09-14 Dani Moncayo <dmoncayo@gmail.com> (tiny change)
+
+ * lists.texi (Sets And Lists): Fix typo. (Bug#9393)
+
2011-09-11 Juanma Barranquero <lekktu@gmail.com>
* processes.texi (Network Servers): Clarify what the process
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi
index 7a530b602e0..056c924e72c 100644
--- a/doc/lispref/lists.texi
+++ b/doc/lispref/lists.texi
@@ -1454,7 +1454,7 @@ For example:
l
@result{} ((2) (1))
;; @r{If you want to change @code{l} reliably,}
-;; @r{write @code{(setq l (delete elt l))}.}
+;; @r{write @code{(setq l (delete '(2) l))}.}
@end group
@group
(setq l '((2) (1) (2)))