From 02c76800769e96b9d36ea34e7a148de0edab05ad Mon Sep 17 00:00:00 2001 From: Casey Klein Date: Thu, 31 Mar 2011 13:26:54 -0500 Subject: [PATCH] Fixes Guide typos --- collects/scribblings/guide/namespaces.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/guide/namespaces.scrbl b/collects/scribblings/guide/namespaces.scrbl index d387458d94..b6622bfc22 100644 --- a/collects/scribblings/guide/namespaces.scrbl +++ b/collects/scribblings/guide/namespaces.scrbl @@ -27,7 +27,7 @@ and evaluates it: (eval '(+ 1 2)) ] -The power of @racket[eval] that is that an expression can be +The power of @racket[eval] is that an expression can be constructed dynamically: @interaction[ @@ -52,7 +52,7 @@ direct approach is to use first-class functions: However, if expressions like @racket[(+ x y)] and @racket[(+ (* x y) y)] are read from a file supplied by a user, for example, then -@racket[eval] might be appropriate. Simialrly, the @tech{REPL} reads +@racket[eval] might be appropriate. Similarly, the @tech{REPL} reads expressions that are typed by a user and uses @racket[eval] to evaluate them.