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