aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/records.texi6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/lispref/records.texi b/doc/lispref/records.texi
index 9a5d900cfc9..a6c560cbcb9 100644
--- a/doc/lispref/records.texi
+++ b/doc/lispref/records.texi
@@ -14,8 +14,10 @@ instances.
14 14
15 Internally, a record object is much like a vector; its slots can be 15 Internally, a record object is much like a vector; its slots can be
16accessed using @code{aref}. However, the first slot is used to hold 16accessed using @code{aref}. However, the first slot is used to hold
17its type as returned by @code{type-of}. Like arrays, records use 17its type as returned by @code{type-of}. Also, in the current
18zero-origin indexing: the first slot has index 0. 18implementation records can have at most 4096 slots, whereas vectors
19can be much larger. Like arrays, records use zero-origin indexing:
20the first slot has index 0.
19 21
20 The printed representation of records is @samp{#s} followed by a 22 The printed representation of records is @samp{#s} followed by a
21list specifying the contents. The first list element must be the 23list specifying the contents. The first list element must be the