From 97b1a9358d0eb9c563368b11eb2f09959af0bfb8 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 27 Nov 2011 11:29:45 -0700 Subject: [PATCH] fix typo --- collects/scribblings/guide/binding.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/guide/binding.scrbl b/collects/scribblings/guide/binding.scrbl index a138531fde..53a4682d17 100644 --- a/collects/scribblings/guide/binding.scrbl +++ b/collects/scribblings/guide/binding.scrbl @@ -47,7 +47,7 @@ y)]. The environment of @racket[(+ x y)] includes bindings for @racketmodname[racket]. A module-level @racket[define] can bind only identifiers that are not -already defined or @racket[require]s into the module. A local +already defined or @racket[require]d into the module. A local @racket[define] or other binding forms, however, can give a new local binding for an identifier that already has a binding; such a binding @deftech{shadows} the existing binding.