From 56a701bfae4b5c0e0a013ef6c2177be705bdaba3 Mon Sep 17 00:00:00 2001 From: John Clements Date: Tue, 24 Mar 2015 10:32:40 -0700 Subject: [PATCH] raco test docs module*->module --- pkgs/racket-doc/scribblings/raco/test.scrbl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/racket-doc/scribblings/raco/test.scrbl b/pkgs/racket-doc/scribblings/raco/test.scrbl index a4806063d8..8b9e8fd850 100644 --- a/pkgs/racket-doc/scribblings/raco/test.scrbl +++ b/pkgs/racket-doc/scribblings/raco/test.scrbl @@ -187,8 +187,8 @@ identifiers: In order to prevent evaluation of a file for testing purposes, it suffices to create a submodule that does not perform any tests and -does not trigger the evaluation of the enclosing module. The -@racket[module*] form is one way to accomplish this: +does not trigger the evaluation of the enclosing module. So, for +instance, a file might look like this: @#reader scribble/comment-reader (racketmod @@ -197,7 +197,7 @@ does not trigger the evaluation of the enclosing module. The (/ 1 0) ;; don't run this file for testing: - (module* test racket/base) + (module test racket/base) ) @section[#:tag "test-config-info"]{Test Configuration by @filepath{info.rkt}}