aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorEric Abrahamsen2020-02-26 15:47:12 -0500
committerEric Abrahamsen2020-02-26 15:47:12 -0500
commitf9e53947c71ddf7f8d176a23c0a585fafa13b952 (patch)
tree3d8072986b89b44c83dcb9ac3be207051bb122ec /doc
parent999d75c0c1ce3dd19dfe376c0063951f9ba45900 (diff)
downloademacs-f9e53947c71ddf7f8d176a23c0a585fafa13b952.tar.gz
emacs-f9e53947c71ddf7f8d176a23c0a585fafa13b952.zip
Fix documented slot name of eieio-instance-tracker class
* doc/misc/eieio.texi (eieio-instance-tracker): The code has the slot name as `tracking-symbol', not `tracker-symbol'.
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/eieio.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/misc/eieio.texi b/doc/misc/eieio.texi
index 6c030fcfca9..3943c544c7d 100644
--- a/doc/misc/eieio.texi
+++ b/doc/misc/eieio.texi
@@ -1285,9 +1285,9 @@ This class is defined in the package @file{eieio-base}.
1285Sometimes it is useful to keep a master list of all instances of a given 1285Sometimes it is useful to keep a master list of all instances of a given
1286class. The class @code{eieio-instance-tracker} performs this task. 1286class. The class @code{eieio-instance-tracker} performs this task.
1287 1287
1288@deftp {Class} eieio-instance-tracker tracker-symbol 1288@deftp {Class} eieio-instance-tracker tracking-symbol
1289Enable instance tracking for this class. 1289Enable instance tracking for this class.
1290The slot @var{tracker-symbol} should be initialized in inheritors of 1290The slot @var{tracking-symbol} should be initialized in inheritors of
1291this class to a symbol created with @code{defvar}. This symbol will 1291this class to a symbol created with @code{defvar}. This symbol will
1292serve as the variable used as a master list of all objects of the given 1292serve as the variable used as a master list of all objects of the given
1293class. 1293class.