diff --git a/doc/ref/goops.texi b/doc/ref/goops.texi index bc04985cf..ce0b76bb2 100644 --- a/doc/ref/goops.texi +++ b/doc/ref/goops.texi @@ -1941,13 +1941,13 @@ which in turn expands to: @example (define - (make #:supers (list ) #:slots slots)) + (make #:dsupers (list ) #:slots slots)) @end example As this expansion makes clear, the resulting value of @code{} is an instance of the class @code{} with slot values specifying the superclasses and slot definitions for the class @code{}. -(@code{#:supers} and @code{#:slots} are initialization keywords for the +(@code{#:dsupers} and @code{#:slots} are initialization keywords for the @code{dsupers} and @code{dslots} slots of the @code{} class.) Now suppose that you want to define a new class with a metaclass other @@ -1964,7 +1964,7 @@ and Guile expands @emph{this} to something like: @example (define - (make #:supers (list ) #:slots slots)) + (make #:dsupers (list ) #:slots slots)) @end example In this case, the value of @code{} is an instance of the more