bkyk8rc3zvpnsf5inmcqq4n3k98cv6hj-my-site-hyper-literate-git.test.suzanne.soy-0.0.1

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 7c59dcd2406c6deec291dccb6dede28384ee318a
parent 4cbccb1c85af929f3698a4071969017e0bbf2362
Author: Robby Findler <robby@racket-lang.org>
Date:   Sun, 10 Mar 2013 17:33:08 -0500

adjust xmethod macro to yield a more helpful error message

original commit: 282cdcbb5b2513abde2df242611e0ea2157e9a77

Diffstat:
Mcollects/scribble/private/manual-method.rkt | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/collects/scribble/private/manual-method.rkt b/collects/scribble/private/manual-method.rkt @@ -17,8 +17,8 @@ (define-syntax-rule (method class/interface method-name) (*method 'method-name (quote-syntax class/interface))) -(define-syntax-rule (xmethod a b) - (elem (method a b) " in " (racket a))) +(define-syntax-rule (xmethod class/intf-id method-id) + (elem (method class/intf-id method-id) " in " (racket class/intf-id))) (define (*method sym id) (**method sym id))