From ecbff0976eb9f590f39fb6ba2851e11f483bca64 Mon Sep 17 00:00:00 2001 From: David Florness Date: Mon, 20 Jan 2020 14:59:21 -0700 Subject: [PATCH] Grammar fix --- pkgs/racket-doc/scribblings/guide/module-require.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/racket-doc/scribblings/guide/module-require.scrbl b/pkgs/racket-doc/scribblings/guide/module-require.scrbl index 5258c14600..eedf757d4a 100644 --- a/pkgs/racket-doc/scribblings/guide/module-require.scrbl +++ b/pkgs/racket-doc/scribblings/guide/module-require.scrbl @@ -5,8 +5,8 @@ The @racket[require] form imports from another module. A @racket[require] form can appear within a module, in which case it -introduces bindings from the specified module into importing module. A -@racket[require] form can also appear at the top level, in which case +introduces bindings from the specified module into the importing module. +A @racket[require] form can also appear at the top level, in which case it both imports bindings and @deftech{instantiates} the specified module; that is, it evaluates the body definitions and expressions of the specified module, if they have not been evaluated already.