From 45659b0cc1beb98aa81e6f217405f6a16fa5765b Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sat, 12 May 2012 06:43:40 -0600 Subject: [PATCH] fix doc example Closes PR 12768 --- collects/scribblings/reference/match.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/reference/match.scrbl b/collects/scribblings/reference/match.scrbl index c76a6e7e30..bc1a743c8f 100644 --- a/collects/scribblings/reference/match.scrbl +++ b/collects/scribblings/reference/match.scrbl @@ -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)]) ]}