[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] scratch/record d612102: Fix typos.
From: |
Lars Brinkhoff |
Subject: |
[Emacs-diffs] scratch/record d612102: Fix typos. |
Date: |
Wed, 29 Mar 2017 03:41:14 -0400 (EDT) |
branch: scratch/record
commit d612102b03b776f07d9c45c7d7c40e3384b7c07b
Author: Lars Brinkhoff <address@hidden>
Commit: Lars Brinkhoff <address@hidden>
Fix typos.
---
doc/misc/cl.texi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi
index abfac5d..2339d57 100644
--- a/doc/misc/cl.texi
+++ b/doc/misc/cl.texi
@@ -4224,7 +4224,7 @@ used to implement the new structure type. Records are
used by
default, but @code{(:type vector)} will cause structure objects to be
stored as vectors and @code{(:type list)} lists instead.
-The record and vector representations for structure objects has the
+The record and vector representations for structure objects have the
advantage that all structure slots can be accessed quickly, although
creating them are a bit slower in Emacs Lisp. Lists are easier to
create, but take a relatively long time accessing the later slots.
@@ -4247,7 +4247,7 @@ useful in conjunction with @code{:type}.
(cl-defstruct (person4 (:type vector)) name age sex)
(setq p1 (make-person1))
- @result{} #%[person1 nil nil nil]
+ @result{} #s(person1 nil nil nil)
(setq p2 (make-person2))
@result{} (person2 nil nil nil)
(setq p3 (make-person3))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] scratch/record d612102: Fix typos.,
Lars Brinkhoff <=