From e37714c5d12044426d18b9528168317fd0ba6166 Mon Sep 17 00:00:00 2001 From: Spencer Florence Date: Sun, 22 Feb 2015 16:04:57 -0500 Subject: [PATCH] fixing docs --- scribblings/api.scrbl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scribblings/api.scrbl b/scribblings/api.scrbl index 191be23..15ddcd8 100644 --- a/scribblings/api.scrbl +++ b/scribblings/api.scrbl @@ -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.}