fixed a few typos in the docs

This commit is contained in:
Robby Findler 2010-06-05 17:31:06 -05:00
parent 608f78b29f
commit d981a386d5

View File

@ -43,8 +43,8 @@ parameter is true.
@defproc[(create-embedding-executable [dest path-string?] @defproc[(create-embedding-executable [dest path-string?]
[#:modules mod-list [#:modules mod-list
(listof (list/c (or/c symbol? (one-of/c #t #f)) (listof (list/c (or/c symbol? #t #f)
module-path?)) (or/c path? module-path?)))
null] null]
[#:configure-via-first-module? config-via-first? [#:configure-via-first-module? config-via-first?
any/c any/c
@ -64,28 +64,28 @@ parameter is true.
null] null]
[#:gracket? gracket? any/c #f] [#:gracket? gracket? any/c #f]
[#:mred? mred? any/c #f] [#:mred? mred? any/c #f]
[#:variant variant (one-of/c 'cgc '3m) [#:variant variant (or/c 'cgc '3m)
(system-type 'gc)] (system-type 'gc)]
[#:aux aux (listof (cons/c symbol? any/c)) null] [#:aux aux (listof (cons/c symbol? any/c)) null]
[#:collects-path collects-path [#:collects-path collects-path
(or/c false/c (or/c #f
path-string? path-string?
(listof path-string?)) (listof path-string?))
#f] #f]
[#:launcher? launcher? any/c #f] [#:launcher? launcher? any/c #f]
[#:verbose? verbose? any/c #f] [#:verbose? verbose? any/c #f]
[#:expand-namespace expand-namespace namespace? (current-namespace)]
[#:compiler compile-proc (any/c . -> . compiled-expression?) [#:compiler compile-proc (any/c . -> . compiled-expression?)
(lambda (e) (lambda (e)
(parameterize ([current-namespace (parameterize ([current-namespace
expand-namespace]) expand-namespace])
(compile e)))] (compile e)))]
[#:expand-namespace expand-namespace namespace? (current-namespace)]
[#:src-filter src-filter (path? . -> . any) (lambda (p) #t)] [#:src-filter src-filter (path? . -> . any) (lambda (p) #t)]
[#:on-extension ext-proc [#:on-extension ext-proc
(or/c false/c (path-string? boolean? . -> . any)) (or/c #f (path-string? boolean? . -> . any))
#f] #f]
[#:get-extra-imports extras-proc [#:get-extra-imports extras-proc
(path? compiled-module? (path? compiled-module-expression?
. -> . (listof module-path?)) . -> . (listof module-path?))
(lambda (p m) null)]) (lambda (p m) null)])
void?]{ void?]{