From d66da8ff3b7c7f1d113e32032711cc4c2a1a23e0 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Mon, 10 Aug 2015 11:56:33 -0500 Subject: [PATCH] Fix argument order in guide. Closes PR15131. --- pkgs/racket-doc/scribblings/guide/module-set.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-doc/scribblings/guide/module-set.scrbl b/pkgs/racket-doc/scribblings/guide/module-set.scrbl index ef0a59c235..55bbd9ce3e 100644 --- a/pkgs/racket-doc/scribblings/guide/module-set.scrbl +++ b/pkgs/racket-doc/scribblings/guide/module-set.scrbl @@ -34,7 +34,7 @@ modular reasoning about programs. For example, in the module, (provide rx:fish fishy-string?) (define rx:fish #rx"fish") (define (fishy-string? s) - (regexp-match? s rx:fish))) + (regexp-match? rx:fish s))) ] the function @racket[fishy-string?] will always match strings that