summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2015-03-24 22:42:42 -0700
committerGlenn Morris <rgm@gnu.org>2015-03-24 22:42:42 -0700
commit921dd0de45b955577f39de5f7aab923dab1ff063 (patch)
tree237a330be0f8edd4279cb0ab2d7b3b370ec5b4f9
parentad89f85067d068494009948e76f89c902f043513 (diff)
downloademacs-921dd0de45b955577f39de5f7aab923dab1ff063.tar.gz
* doc/lispref/objects.texi (Equality Predicates): Fix typo in example.
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/objects.texi4
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index a0a2b2b4d05..b11d0a00311 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
+2015-03-25 Glenn Morris <rgm@gnu.org>
+
+ * objects.texi (Equality Predicates): Fix typo in example.
+
2015-03-23 Eli Zaretskii <eliz@gnu.org>
* commands.texi (Event Input Misc): Fix incorrect usage of @code.
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi
index 739477bf372..b9d2bbed418 100644
--- a/doc/lispref/objects.texi
+++ b/doc/lispref/objects.texi
@@ -2111,12 +2111,12 @@ that for two strings to be equal, they have the same text properties.
@example
@group
-(equal "asdf" (propertize "asdf" '(asdf t)))
+(equal "asdf" (propertize "asdf" 'asdf t))
@result{} t
@end group
@group
(equal-including-properties "asdf"
- (propertize "asdf" '(asdf t)))
+ (propertize "asdf" 'asdf t))
@result{} nil
@end group
@end example