From d7887906f573f1cbfa9f04ade2df7966bed57b07 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 30 Aug 2015 10:58:38 +0100 Subject: [PATCH] src/method-aggregate.lisp: Fix export for `aggregating-effective-method'. Organization: Straylight/Edgeware From: Mark Wooding --- src/method-aggregate.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/method-aggregate.lisp b/src/method-aggregate.lisp index 6e5d278..1332e10 100644 --- a/src/method-aggregate.lisp +++ b/src/method-aggregate.lisp @@ -94,7 +94,7 @@ (defgeneric check-aggregating-message-type (message combination type) (:method (message combination type) t)) -(export 'standard-effective-method) +(export 'aggregating-effective-method) (defclass aggregating-effective-method (simple-effective-method) () (:documentation "Effective method counterpart to `aggregating-message'.")) -- [mdw]