aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorTom Tromey2017-03-05 17:16:00 -0700
committerTom Tromey2017-03-05 17:16:00 -0700
commit0fae08d0072f74d97ca70b91a4d46d8d28a03952 (patch)
tree4984ddadaffae4191e7e6a2643f9ccc27b6f7cd3 /doc/misc
parent040644302120bfb11f28461aadb96c14e39f8630 (diff)
downloademacs-0fae08d0072f74d97ca70b91a4d46d8d28a03952.tar.gz
emacs-0fae08d0072f74d97ca70b91a4d46d8d28a03952.zip
Fix typos in EIEIO manual
* doc/misc/eieio.texi (Slot Options, Class Options): Fix typos.
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/eieio.texi16
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.
479You can call this function later on your object and retrieve the value 479You can call this function later on your object and retrieve the value
480of the slot. 480of the slot.
481 481
482This options is in the CLOS spec, but is not fully compliant in @eieio{}. 482This option is in the CLOS spec, but is not fully compliant in @eieio{}.
483 483
484@item :writer 484@item :writer
485Name of a generic function which will write this slot. 485Name of a generic function which will write this slot.
486 486
487This options is in the CLOS spec, but is not fully compliant in @eieio{}. 487This option is in the CLOS spec, but is not fully compliant in @eieio{}.
488 488
489@item :reader 489@item :reader
490Name of a generic function which will read this slot. 490Name of a generic function which will read this slot.
491 491
492This options is in the CLOS spec, but is not fully compliant in @eieio{}. 492This option is in the CLOS spec, but is not fully compliant in @eieio{}.
493 493
494@item :custom 494@item :custom
495A custom :type specifier used when editing an object of this type. 495A custom :type specifier used when editing an object of this type.
496See documentation for @code{defcustom} for details. This specifier is 496See documentation for @code{defcustom} for details. This specifier is
497equivalent to the :type spec of a @code{defcustom} call. 497equivalent to the :type spec of a @code{defcustom} call.
498 498
499This options is specific to Emacs, and is not in the CLOS spec. 499This option is specific to Emacs, and is not in the CLOS spec.
500 500
501@item :label 501@item :label
502When customizing an object, the value of :label will be used instead 502When customizing an object, the value of :label will be used instead
503of the slot name. This enables better descriptions of the data than 503of the slot name. This enables better descriptions of the data than
504would usually be afforded. 504would usually be afforded.
505 505
506This options is specific to Emacs, and is not in the CLOS spec. 506This option is specific to Emacs, and is not in the CLOS spec.
507 507
508@item :group 508@item :group
509Similar to @code{defcustom}'s :group command, this organizes different 509Similar 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
511slots belonging to a specific group need be worked with, simplifying the 511slots belonging to a specific group need be worked with, simplifying the
512size of the display. 512size of the display.
513 513
514This options is specific to Emacs, and is not in the CLOS spec. 514This option is specific to Emacs, and is not in the CLOS spec.
515 515
516@item :printer 516@item :printer
517This routine takes a symbol which is a function name. The function 517This 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.
546Access this slot only from methods of the same class. 546Access this slot only from methods of the same class.
547@end table 547@end table
548 548
549This options is specific to Emacs, and is not in the CLOS spec. 549This 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
571this to pass. The default is to have this option be off. This is 571this to pass. The default is to have this option be off. This is
572implemented as an alternative to unbound slots. 572implemented as an alternative to unbound slots.
573 573
574This options is specific to Emacs, and is not in the CLOS spec. 574This option is specific to Emacs, and is not in the CLOS spec.
575 575
576@item :abstract 576@item :abstract
577A class which is @code{:abstract} cannot be instantiated, and instead 577A class which is @code{:abstract} cannot be instantiated, and instead