fixing docs

This commit is contained in:
Spencer Florence 2015-02-22 16:04:57 -05:00
parent 2fd2227db4
commit e37714c5d1

View File

@ -28,16 +28,16 @@ meaning a @racket[1] represents the first character in the file.}
(files
(or/c path-string?
(list/c path-string?
(not-impersonated/c
(vectorof (not-impersonated/c string?) #:immutable #t))))) ...)
(vectorof string? #:immutable #t)))) ...)
any]{
Runs all given @racket[files] and their submodule @racket[submod] (if it exists), storing the
coverage information. If the path is paired with a vector then that vector is used as the
@racket[current-command-line-arguments] when executing that file. This vector must be immutable and
not wrapped by a @racket[chaperone] or @racket[impersonator], nor may its elements be wrapped in a
chaperone or impersonator. The function returns false if any tests fail. Test coverage information
is still collected when test fail. Test coverage info is added to existing coverage info.}
not wrapped by a @racket[chaperone?] or @racket[impersonator?], nor may its elements be wrapped in a
@racket[chaperone?] or @racket[impersonator?]. The function returns false if any tests fail. Test
coverage information is still collected when test fail. Test coverage info is added to existing
coverage info.}
@defproc[(clear-coverage! [environment environment? (current-coverage-environment)]) any]{
Clears all coverage information.}