File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -736,15 +736,15 @@ stream:
736
736
(check-compiler (parse '(write-byte 97 )) "" )]
737
737
738
738
The @racket[random-expr] function generates random expressions and
739
- @racket[random-good -expr] generates random expressions that are
739
+ @racket[random-well-defined -expr] generates random expressions that are
740
740
guaranteed to be well-defined, as usual. Additionally, the
741
741
@racket[random-input] function produces a random string that can be
742
742
used as the input.
743
743
744
744
@ex[
745
745
(require "random.rkt " )
746
746
(random-expr)
747
- (random-good -expr)
747
+ (random-well-defined -expr)
748
748
(random-input)]
749
749
750
750
Together, these can be used to randomly test the correctness of the
@@ -754,5 +754,5 @@ compiler:
754
754
(for ((i 100 ))
755
755
(check-compiler (random-expr) (random-input)))
756
756
(for ((i 100 ))
757
- (check-compiler (random-good -expr) (random-input)))]
757
+ (check-compiler (random-well-defined -expr) (random-input)))]
758
758
You can’t perform that action at this time.
0 commit comments