summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 1b89cefb271..2db274f2703 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
+2011-08-28 Dani Moncayo <dmoncayo@gmail.com> (tiny change)
+
+ * lists.texi (Building Lists): Fix typo.
+
2011-07-03 Chong Yidong <cyd@stupidchicken.com>
* customize.texi (Composite Types): Move alist and plist to here
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi
index b45277acfb3..383023401ae 100644
--- a/doc/lispref/lists.texi
+++ b/doc/lispref/lists.texi
@@ -463,7 +463,7 @@ element is @var{object}. Compare @code{make-list} with
@result{} nil
@end group
@group
-(setq l (make-list 3 '(a b))
+(setq l (make-list 3 '(a b)))
@result{} ((a b) (a b) (a b))
(eq (car l) (cadr l))
@result{} t