diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-01-14 19:59:31 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-01-14 19:59:31 +0100 |
commit | d1f18ec0920105223d2aecfd838f8b19921e6340 (patch) | |
tree | f98090d895340248c119119406b69974d19cf499 /lisp/emacs-lisp/eieio-base.el | |
parent | 80cd4bb402cd55d9a7efcdf7a77e83cf1118eb61 (diff) | |
download | emacs-d1f18ec0920105223d2aecfd838f8b19921e6340.tar.gz emacs-d1f18ec0920105223d2aecfd838f8b19921e6340.tar.bz2 emacs-d1f18ec0920105223d2aecfd838f8b19921e6340.zip |
Fix typos in docstrings.
Diffstat (limited to 'lisp/emacs-lisp/eieio-base.el')
-rw-r--r-- | lisp/emacs-lisp/eieio-base.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/eieio-base.el b/lisp/emacs-lisp/eieio-base.el index 8403171cf16..b573af29ee2 100644 --- a/lisp/emacs-lisp/eieio-base.el +++ b/lisp/emacs-lisp/eieio-base.el @@ -150,7 +150,7 @@ Returns the first match." "The only instance of this class that will be instantiated. Multiple calls to `make-instance' will return this object.")) "This special class causes subclasses to be singletons. -A singleton is a class which will only ever have one instace." +A singleton is a class which will only ever have one instance." :abstract t) (defmethod constructor :STATIC ((class eieio-singleton) name &rest slots) @@ -309,7 +309,7 @@ access to it." (defmethod slot-missing ((obj eieio-named) slot-name operation &optional new-value) - "Called when a on-existant slot is accessed. + "Called when a non-existent slot is accessed. For variable `eieio-named', provide an imaginary `object-name' slot. Argument OBJ is the named object. Argument SLOT-NAME is the slot that was attempted to be accessed. |