diff options
Diffstat (limited to 'lispref/objects.texi')
-rw-r--r-- | lispref/objects.texi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi index 3b51b96c780..f708ab79f5e 100644 --- a/lispref/objects.texi +++ b/lispref/objects.texi @@ -1822,12 +1822,14 @@ This function returns a symbol naming the primitive type of @example (type-of 1) @result{} integer +@group (type-of 'nil) @result{} symbol (type-of '()) ; @r{@code{()} is @code{nil}.} @result{} symbol (type-of '(x)) @result{} cons +@end group @end example @end defun |