diff --git a/pkgs/racket-doc/scribblings/guide/cond.scrbl b/pkgs/racket-doc/scribblings/guide/cond.scrbl index 4ed5e8b4e2..b94df390e6 100644 --- a/pkgs/racket-doc/scribblings/guide/cond.scrbl +++ b/pkgs/racket-doc/scribblings/guide/cond.scrbl @@ -105,7 +105,7 @@ as follows: Each @racket[_test-expr] is evaluated in order. If it produces @racket[#f], the corresponding @racket[_body]s are ignored, and evaluation proceeds to the next @racket[_test-expr]. As soon as a -@racket[_test-expr] produces a true value, its @racket[_body]s +@racket[_test-expr] produces a true value, the associated @racket[_body]s are evaluated to produce the result for the @racket[cond] form, and no further @racket[_test-expr]s are evaluated. diff --git a/pkgs/racket-doc/scribblings/guide/lists.scrbl b/pkgs/racket-doc/scribblings/guide/lists.scrbl index 521a574cc1..b67e9c09f8 100644 --- a/pkgs/racket-doc/scribblings/guide/lists.scrbl +++ b/pkgs/racket-doc/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/pkgs/racket-doc/scribblings/guide/qq.scrbl b/pkgs/racket-doc/scribblings/guide/qq.scrbl index 106133ddd8..48945bced7 100644 --- a/pkgs/racket-doc/scribblings/guide/qq.scrbl +++ b/pkgs/racket-doc/scribblings/guide/qq.scrbl @@ -158,7 +158,7 @@ The same shorthands can be used in expressions: `(1 2 `(,(+ 1 2) ,,(- 5 1))) ] -The shorthand form of @racket[unquote-splicing] is @litchar[",@"]: +The shorthand for of @racket[unquote-splicing] is @litchar[",@"]: @examples[ `(1 2 ,@(list (+ 1 2) (- 5 1))) diff --git a/pkgs/racket-doc/scribblings/guide/quote.scrbl b/pkgs/racket-doc/scribblings/guide/quote.scrbl index 282dd1dfa8..885cda9104 100644 --- a/pkgs/racket-doc/scribblings/guide/quote.scrbl +++ b/pkgs/racket-doc/scribblings/guide/quote.scrbl @@ -1,7 +1,7 @@ #lang scribble/doc @(require scribble/manual scribble/eval "guide-utils.rkt") -@title[#:tag "quote"]{Quoting: @racket[quote] and @racketvalfont{@literal{'}}} +@title[#:tag "quote"]{Quoting: @racket[quote] and @racketvalfont{'}} @refalso["quote"]{@racket[quote]} diff --git a/pkgs/racket-doc/scribblings/guide/truth.scrbl b/pkgs/racket-doc/scribblings/guide/truth.scrbl index 7fe76c3008..ff36bfa23d 100644 --- a/pkgs/racket-doc/scribblings/guide/truth.scrbl +++ b/pkgs/racket-doc/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 3) (4))) +(eval:alts (@#,racket[quote] ((1) (2 3) (4))) '((1) (2 4) (4))) (eval:alts (@#,racket[quote] ()) '()) ]