From c4415e07c1e2dacedd11bc3b987bad29b4bda5ac Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Thu, 21 Aug 2008 12:49:52 +0000 Subject: [PATCH] examples typo svn: r11365 --- collects/scribblings/guide/define-struct.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/guide/define-struct.scrbl b/collects/scribblings/guide/define-struct.scrbl index 627a42bf37..e1fb06f771 100644 --- a/collects/scribblings/guide/define-struct.scrbl +++ b/collects/scribblings/guide/define-struct.scrbl @@ -360,7 +360,7 @@ A @scheme[_struct-option] always starts with a keyword: that sets the value of the corresponding field in an instance of the structure type. - @defexamples[(define-struct dot (x y) #:mutable)] + @defexamples[(define-struct dot (x y) #:mutable) (define d (make-dot 1 2)) (dot-x d) (set-dot-x! d 10)