From 63f4bfb6c5582e020da9fea80a1e3cd6d1296244 Mon Sep 17 00:00:00 2001 From: Asumu Takikawa Date: Sat, 9 Feb 2013 19:42:00 -0500 Subject: [PATCH] Use up-to-date struct syntax in example original commit: 59eb1ad13c02bf9b0fadd5ee2d0131f86f95292f --- collects/typed-racket/scribblings/reference/special-forms.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/typed-racket/scribblings/reference/special-forms.scrbl b/collects/typed-racket/scribblings/reference/special-forms.scrbl index dbceabe3..aab139ce 100644 --- a/collects/typed-racket/scribblings/reference/special-forms.scrbl +++ b/collects/typed-racket/scribblings/reference/special-forms.scrbl @@ -394,7 +394,7 @@ Racket. (module TYPED typed/racket (require/typed 'UNTYPED [n Natural] - [struct IntTree + [#:struct IntTree ([elem : Integer] [left : IntTree] [right : IntTree])]))]