diff options
| author | Andrea Corallo | 2024-03-01 09:27:22 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2024-03-01 09:27:22 +0100 |
| commit | 4372a056fef90e5927d1a627fe0eb2bb01eb0dfb (patch) | |
| tree | 5ed8b6211601b853f353948313e11e2b72f53d1b /doc/lispref/objects.texi | |
| parent | 0567f3b817ba25c8e216347cc7118fa7786039d9 (diff) | |
| download | emacs-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.texi | 8 |
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 | ||
| 2503 | Lisp types are organized in a hierarchy, this means that types can | 2503 | Lisp types are organized in a hierarchy, this means that types can |
| 2504 | derive from other types. Objects of a type A (which derives from type | 2504 | derive from other types. Objects of a type B (which derives from type |
| 2505 | B) inherite all the charateristics of type B. This also means that | 2505 | A) inherite all the charateristics of type A. This also means that |
| 2506 | every objects of type A is at the same time of type B. | 2506 | every objects of type B is at the same time of type A. |
| 2507 | 2507 | ||
| 2508 | Every type derives from type @code{t}. | 2508 | Every 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 | ||
| 2518 | For example type @code{list} derives from (is a special kind of) type | 2518 | For 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}. |