From 57a3449003a1871ccd6e975592b40fea240e4055 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Fri, 18 Jul 2008 07:08:55 +0000 Subject: [PATCH] yet another typo svn: r10831 --- 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 fa4221f4c1..3e8f2c2dfc 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-]+" name) + (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-]+" name) + (and (regexp-match? #rx"^[a-z-]+$" name) (regexp-replace #rx"-" (string-titlecase name) ""))) (all-defined-out)))]