From c100fb6e2146cdf093acf2f54386080d5c1ea13b Mon Sep 17 00:00:00 2001 From: Phil Eaton Date: Tue, 3 Jan 2017 22:20:30 -0500 Subject: [PATCH] Fixed typo in documentation --- functional-doc/scribblings/data/functional.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functional-doc/scribblings/data/functional.scrbl b/functional-doc/scribblings/data/functional.scrbl index a5382b9..50cc585 100644 --- a/functional-doc/scribblings/data/functional.scrbl +++ b/functional-doc/scribblings/data/functional.scrbl @@ -293,7 +293,7 @@ definitions do not produce new @racket[chain] calls, they simply create new bind (define (prettify a b) (~a a ": " b)) (pure (prettify y z))))) -Internal defintions defined within @racket[do] blocks may refer to all previous bindings, but not +Internal definitions defined within @racket[do] blocks may refer to all previous bindings, but not subsequent ones. However, multiple internal definitions directly next to one another may be mutually recursive, so long as they are not separated by a @racket[chain].