Fix argument order in guide.

Closes PR15131.
This commit is contained in:
Vincent St-Amour 2015-08-10 11:56:33 -05:00
parent e9e7e42b64
commit d66da8ff3b

View File

@ -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