Revert "Guide proofread" and "Guide typos".

This reverts commit 75d5b42640.
This reverts commit 9835bc2f7b.

The author of these commits wishes not to relicense their changes.
This commit is contained in:
Sam Tobin-Hochstadt 2019-10-21 20:56:21 -04:00
parent 7f5f289ff6
commit b55cc89166
5 changed files with 5 additions and 5 deletions

View File

@ -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.

View File

@ -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))
]

View File

@ -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)))

View File

@ -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]}

View File

@ -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] ()) '())
]