fix doc example

Closes PR 12768
This commit is contained in:
Matthew Flatt 2012-05-12 06:43:40 -06:00
parent 0278b9e0af
commit 45659b0cc1

View File

@ -61,7 +61,7 @@ In more detail, patterns match as follows:
(match '(1 2 3)
[(list a b a) (list a b)]
[(list a b c) (list c b a)])
(match '(1 '(x y z) 1)
(match '(1 (x y z) 1)
[(list a b a) (list a b)]
[(list a b c) (list c b a)])
]}