diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/records.texi | 6 |
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 |
| 16 | accessed using @code{aref}. However, the first slot is used to hold | 16 | accessed using @code{aref}. However, the first slot is used to hold |
| 17 | its type as returned by @code{type-of}. Like arrays, records use | 17 | its type as returned by @code{type-of}. Also, in the current |
| 18 | zero-origin indexing: the first slot has index 0. | 18 | implementation records can have at most 4096 slots, whereas vectors |
| 19 | can be much larger. Like arrays, records use zero-origin indexing: | ||
| 20 | the 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 |
| 21 | list specifying the contents. The first list element must be the | 23 | list specifying the contents. The first list element must be the |