diff options
| author | Tom Tromey | 2017-03-05 17:16:00 -0700 |
|---|---|---|
| committer | Tom Tromey | 2017-03-05 17:16:00 -0700 |
| commit | 0fae08d0072f74d97ca70b91a4d46d8d28a03952 (patch) | |
| tree | 4984ddadaffae4191e7e6a2643f9ccc27b6f7cd3 | |
| parent | 040644302120bfb11f28461aadb96c14e39f8630 (diff) | |
| download | emacs-0fae08d0072f74d97ca70b91a4d46d8d28a03952.tar.gz emacs-0fae08d0072f74d97ca70b91a4d46d8d28a03952.zip | |
Fix typos in EIEIO manual
* doc/misc/eieio.texi (Slot Options, Class Options): Fix typos.
| -rw-r--r-- | doc/misc/eieio.texi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/misc/eieio.texi b/doc/misc/eieio.texi index ce31bc84b4e..dfae565deed 100644 --- a/doc/misc/eieio.texi +++ b/doc/misc/eieio.texi | |||
| @@ -479,31 +479,31 @@ Name of a generic function which can be used to fetch the value of this slot. | |||
| 479 | You can call this function later on your object and retrieve the value | 479 | You can call this function later on your object and retrieve the value |
| 480 | of the slot. | 480 | of the slot. |
| 481 | 481 | ||
| 482 | This options is in the CLOS spec, but is not fully compliant in @eieio{}. | 482 | This option is in the CLOS spec, but is not fully compliant in @eieio{}. |
| 483 | 483 | ||
| 484 | @item :writer | 484 | @item :writer |
| 485 | Name of a generic function which will write this slot. | 485 | Name of a generic function which will write this slot. |
| 486 | 486 | ||
| 487 | This options is in the CLOS spec, but is not fully compliant in @eieio{}. | 487 | This option is in the CLOS spec, but is not fully compliant in @eieio{}. |
| 488 | 488 | ||
| 489 | @item :reader | 489 | @item :reader |
| 490 | Name of a generic function which will read this slot. | 490 | Name of a generic function which will read this slot. |
| 491 | 491 | ||
| 492 | This options is in the CLOS spec, but is not fully compliant in @eieio{}. | 492 | This option is in the CLOS spec, but is not fully compliant in @eieio{}. |
| 493 | 493 | ||
| 494 | @item :custom | 494 | @item :custom |
| 495 | A custom :type specifier used when editing an object of this type. | 495 | A custom :type specifier used when editing an object of this type. |
| 496 | See documentation for @code{defcustom} for details. This specifier is | 496 | See documentation for @code{defcustom} for details. This specifier is |
| 497 | equivalent to the :type spec of a @code{defcustom} call. | 497 | equivalent to the :type spec of a @code{defcustom} call. |
| 498 | 498 | ||
| 499 | This options is specific to Emacs, and is not in the CLOS spec. | 499 | This option is specific to Emacs, and is not in the CLOS spec. |
| 500 | 500 | ||
| 501 | @item :label | 501 | @item :label |
| 502 | When customizing an object, the value of :label will be used instead | 502 | When customizing an object, the value of :label will be used instead |
| 503 | of the slot name. This enables better descriptions of the data than | 503 | of the slot name. This enables better descriptions of the data than |
| 504 | would usually be afforded. | 504 | would usually be afforded. |
| 505 | 505 | ||
| 506 | This options is specific to Emacs, and is not in the CLOS spec. | 506 | This option is specific to Emacs, and is not in the CLOS spec. |
| 507 | 507 | ||
| 508 | @item :group | 508 | @item :group |
| 509 | Similar to @code{defcustom}'s :group command, this organizes different | 509 | Similar to @code{defcustom}'s :group command, this organizes different |
| @@ -511,7 +511,7 @@ slots in an object into groups. When customizing an object, only the | |||
| 511 | slots belonging to a specific group need be worked with, simplifying the | 511 | slots belonging to a specific group need be worked with, simplifying the |
| 512 | size of the display. | 512 | size of the display. |
| 513 | 513 | ||
| 514 | This options is specific to Emacs, and is not in the CLOS spec. | 514 | This option is specific to Emacs, and is not in the CLOS spec. |
| 515 | 515 | ||
| 516 | @item :printer | 516 | @item :printer |
| 517 | This routine takes a symbol which is a function name. The function | 517 | This routine takes a symbol which is a function name. The function |
| @@ -546,7 +546,7 @@ Access this slot only from methods of the same class or a child class. | |||
| 546 | Access this slot only from methods of the same class. | 546 | Access this slot only from methods of the same class. |
| 547 | @end table | 547 | @end table |
| 548 | 548 | ||
| 549 | This options is specific to Emacs, and is not in the CLOS spec. | 549 | This option is specific to Emacs, and is not in the CLOS spec. |
| 550 | 550 | ||
| 551 | @end table | 551 | @end table |
| 552 | 552 | ||
| @@ -571,7 +571,7 @@ the @code{:type} is specifies something such as @code{string} then allow | |||
| 571 | this to pass. The default is to have this option be off. This is | 571 | this to pass. The default is to have this option be off. This is |
| 572 | implemented as an alternative to unbound slots. | 572 | implemented as an alternative to unbound slots. |
| 573 | 573 | ||
| 574 | This options is specific to Emacs, and is not in the CLOS spec. | 574 | This option is specific to Emacs, and is not in the CLOS spec. |
| 575 | 575 | ||
| 576 | @item :abstract | 576 | @item :abstract |
| 577 | A class which is @code{:abstract} cannot be instantiated, and instead | 577 | A class which is @code{:abstract} cannot be instantiated, and instead |