Fixing two typos found by pdedede

svn: r17615
This commit is contained in:
Jay McCarthy 2010-01-12 02:37:22 +00:00
parent 331c6d2f5f
commit c22810cef1

View File

@ -303,12 +303,12 @@ Similar to @scheme[map], except that
@itemize[ @itemize[
@item{the result is @scheme[#f] if every application of @scheme[proc] produces @item{the result is @scheme[#f] if every application of @scheme[proc] produces
@scheme[#f]; or} @scheme[#f]; and}
@item{the result of the first applciation of @scheme[proc] to produces a @item{if the result of an application of @scheme[proc] produces a
value other than @scheme[#f], in which case @scheme[proc] is not value other than @scheme[#f], then @scheme[proc] is not
applied to later elements of the @scheme[lst]s; applied to later elements of the @scheme[lst]s;
the application of @scheme[proc] to the last elements in the the application of @scheme[proc] to the last elements of the
@scheme[lst]s is in tail position with respect to the @scheme[lst]s is in tail position with respect to the
@scheme[ormap] call.} @scheme[ormap] call.}
@ -330,7 +330,7 @@ Similar to @scheme[map], but @scheme[proc] is called only for its
effect, and its result (which can be any number of values) is effect, and its result (which can be any number of values) is
ignored. ignored.
(mz-examples[ @mz-examples[
(for-each (lambda (arg) (for-each (lambda (arg)
(printf "Got ~a\n" arg) (printf "Got ~a\n" arg)
23) 23)