Fix typos in docs

This commit is contained in:
Gustavo Massaccesi 2015-07-09 22:18:17 -03:00 committed by Matthew Flatt
parent 597eb161f5
commit 9fe6c138cf
2 changed files with 4 additions and 4 deletions

View File

@ -113,7 +113,7 @@ Racket tools all work automatically with relative paths. For example,
@commandline{racket sort.rkt}
on the comamnd line runs the @filepath{sort.rkt} program and
on the command line runs the @filepath{sort.rkt} program and
automatically loads and compiles required modules. With a large enough
program, compilation from source can take too long, so use

View File

@ -51,7 +51,7 @@ written.
Creates an input port, which is immediately open for reading. If
@racket[close] procedure has no side effects, then the port need not
be explicitly closed. See also @racket[make-input-port/peek-to-read].
be explicitly closed. See also @racket[make-input-port/read-to-peek].
The arguments implement the port as follows:
@ -216,8 +216,8 @@ The arguments implement the port as follows:
@elemref["special"]{special} when @racket[peek] is
@racket[#f]. Finally, the automatic peek implementation is
incompatible with progress events, so if @racket[peek] is
@racket[#f], then @racket[progress-evt] and @racket[commit] must
be @racket[#f]. See also @racket[make-input-port/peek-to-read],
@racket[#f], then @racket[get-progress-evt] and @racket[commit] must
be @racket[#f]. See also @racket[make-input-port/read-to-peek],
which implements peeking in terms of @racket[read-in] without
these constraints.