diff options
Diffstat (limited to 'doc/ref/goops.texi')
-rw-r--r-- | doc/ref/goops.texi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/ref/goops.texi b/doc/ref/goops.texi index 362a6e371..10192eb3b 100644 --- a/doc/ref/goops.texi +++ b/doc/ref/goops.texi @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -@c Copyright (C) 2008, 2009 +@c Copyright (C) 2008, 2009, 2011 @c Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @@ -822,9 +822,10 @@ Here is an example: #:export (x y z ...)) (define-module (my-module) + #:use-module (oop goops) #:use-module (math 2D-vectors) #:use-module (math 3D-vectors) - #:duplicates merge-generics) + #:duplicates (merge-generics)) @end lisp The generic function @code{x} in @code{(my-module)} will now incorporate |