aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/objects.texi
diff options
context:
space:
mode:
authorAndrea Corallo2024-03-01 09:27:22 +0100
committerAndrea Corallo2024-03-01 09:27:22 +0100
commit4372a056fef90e5927d1a627fe0eb2bb01eb0dfb (patch)
tree5ed8b6211601b853f353948313e11e2b72f53d1b /doc/lispref/objects.texi
parent0567f3b817ba25c8e216347cc7118fa7786039d9 (diff)
downloademacs-4372a056fef90e5927d1a627fe0eb2bb01eb0dfb.tar.gz
emacs-4372a056fef90e5927d1a627fe0eb2bb01eb0dfb.zip
* doc/lispref/objects.texi (Type Hierarchy): Small improvements
Diffstat (limited to 'doc/lispref/objects.texi')
-rw-r--r--doc/lispref/objects.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi
index 01f82d56528..9a4c1473d75 100644
--- a/doc/lispref/objects.texi
+++ b/doc/lispref/objects.texi
@@ -2501,9 +2501,9 @@ regardless of whether this optimization is in use.
2501@node Type Hierarchy 2501@node Type Hierarchy
2502 2502
2503Lisp types are organized in a hierarchy, this means that types can 2503Lisp types are organized in a hierarchy, this means that types can
2504derive from other types. Objects of a type A (which derives from type 2504derive from other types. Objects of a type B (which derives from type
2505B) inherite all the charateristics of type B. This also means that 2505A) inherite all the charateristics of type A. This also means that
2506every objects of type A is at the same time of type B. 2506every objects of type B is at the same time of type A.
2507 2507
2508Every type derives from type @code{t}. 2508Every type derives from type @code{t}.
2509 2509
@@ -2516,4 +2516,4 @@ follow:
2516@image{type_hierarchy,,,,png} 2516@image{type_hierarchy,,,,png}
2517 2517
2518For example type @code{list} derives from (is a special kind of) type 2518For example type @code{list} derives from (is a special kind of) type
2519@code{sequence} wich on itself derives from @code{t}. 2519@code{sequence} which on itself derives from @code{t}.