diff --git a/collects/scribblings/guide/lists.scrbl b/collects/scribblings/guide/lists.scrbl index c4ff2e5c0c..c7bb8f1bac 100644 --- a/collects/scribblings/guide/lists.scrbl +++ b/collects/scribblings/guide/lists.scrbl @@ -271,7 +271,7 @@ usually not worthwhile, as discussed below.} [(empty? lst) (reverse backward-result)] [else (iter (rest lst) (cons (f (first lst)) - backward-result))])) + backward-result))])) (iter lst empty)) ] diff --git a/collects/scribblings/guide/truth.scrbl b/collects/scribblings/guide/truth.scrbl index 178aac4acf..753e560e35 100644 --- a/collects/scribblings/guide/truth.scrbl +++ b/collects/scribblings/guide/truth.scrbl @@ -86,7 +86,7 @@ prints: @interaction[ (eval:alts (@#,racket[quote] ("red" "green" "blue")) '("red" "green" "blue")) -(eval:alts (@#,racket[quote] ((1) (2 3) (4))) '((1) (2 4) (4))) +(eval:alts (@#,racket[quote] ((1) (2 3) (4))) '((1) (2 3) (4))) (eval:alts (@#,racket[quote] ()) '()) ]