From d9611437913b801b313bcec3646ff4a6073fea3e Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Fri, 18 Jul 2008 07:07:28 +0000 Subject: [PATCH] more typos svn: r10830 --- collects/scribblings/reference/syntax.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/reference/syntax.scrbl b/collects/scribblings/reference/syntax.scrbl index 88491ef5fb..fa4221f4c1 100644 --- a/collects/scribblings/reference/syntax.scrbl +++ b/collects/scribblings/reference/syntax.scrbl @@ -737,7 +737,7 @@ instead of @schemeblock[ (require (filtered-in (lambda (name) - (and (regexp-match? #rx"[a-z-]+") + (and (regexp-match? #rx"[a-z-]+" name) (regexp-replace #rx"-" (string-titlecase name) ""))) scheme/base))] @@ -767,7 +767,7 @@ instead of @schemeblock[ (provide (filtered-out (lambda (name) - (and (regexp-match? #rx"[a-z-]+") + (and (regexp-match? #rx"[a-z-]+" name) (regexp-replace #rx"-" (string-titlecase name) ""))) (all-defined-out)))]