aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2021-12-05 22:03:24 +0100
committerLars Ingebrigtsen2021-12-05 22:03:24 +0100
commite00623c5bd13b62d9a54935f744c2ad2afc718b7 (patch)
treebe88a983aa392fffc970ff22df62ea956061db2d
parent6980a4fa450260b97830de52a69b039d9d020ff2 (diff)
downloademacs-e00623c5bd13b62d9a54935f744c2ad2afc718b7.tar.gz
emacs-e00623c5bd13b62d9a54935f744c2ad2afc718b7.zip
Fix wording in eieio.texi (Generics)
* doc/misc/eieio.texi (Generics): Fix wording in paragraph (bug#52317).
-rw-r--r--doc/misc/eieio.texi9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/misc/eieio.texi b/doc/misc/eieio.texi
index 8a4b914687c..c8d488d6edb 100644
--- a/doc/misc/eieio.texi
+++ b/doc/misc/eieio.texi
@@ -856,11 +856,12 @@ You can also create a generic method with @code{cl-defmethod}
856(@pxref{Methods}). When a method is created and there is no generic 856(@pxref{Methods}). When a method is created and there is no generic
857method in place with that name, then a new generic will be created, 857method in place with that name, then a new generic will be created,
858and the new method will use it. 858and the new method will use it.
859@end defmac
860 859
861In CLOS, a generic call also be used to provide an argument list and 860In CLOS, a generic method can also be used to provide an argument list
862dispatch precedence for all the arguments. In @eieio{}, dispatching 861and dispatch precedence for all the arguments. In @eieio{},
863only occurs for the first argument, so the @var{arglist} is not used. 862dispatching only occurs for the first argument, so the @var{arglist}
863is not used.
864@end defmac
864 865
865@node Methods 866@node Methods
866@section Methods 867@section Methods