From 1857f16a672a47e51b2b832a56b2c297f466c10f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Tue, 8 Dec 2015 14:57:35 +0100 Subject: [PATCH] Fixed typos in documentation. --- cover/raco.rkt | 2 +- cover/scribblings/basics.scrbl | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cover/raco.rkt b/cover/raco.rkt index aaedb09..cb018c5 100644 --- a/cover/raco.rkt +++ b/cover/raco.rkt @@ -56,7 +56,7 @@ "Run the given submodule instead of the test submodule" (set! submod (string->symbol s))] [("-e" "--irrelevant-submodules") s - "Concider the given submodules irrelevant when generating coverage. If not provided defaults to all submodules." + "Consider the given submodules irrelevant when generating coverage. If not provided defaults to all submodules." (unless irrel-submods (set! irrel-submods null)) (set! irrel-submods (cons (string->symbol s) irrel-submods))] diff --git a/cover/scribblings/basics.scrbl b/cover/scribblings/basics.scrbl index de525c9..9ed72eb 100644 --- a/cover/scribblings/basics.scrbl +++ b/cover/scribblings/basics.scrbl @@ -32,7 +32,7 @@ The @exec{raco cover} command accepts the following flags: @item{@Flag{s} or @DFlag{submod} --- run the given submodule instead of the @racket[_test] submodule.} @item{@Flag{e} or @DFlag{irrelevant-submodules} - --- Concider the given submodules irrelevant when generating coverage. If not + --- Consider the given submodules irrelevant when generating coverage. If not provided defaults to all submodules. Can be included more than once.} @item{@Flag{c} or @DFlag{collection} --- Interprets the arguments as collections whose content should be @@ -71,5 +71,5 @@ propagate the @racket[syntax-location] for some syntax object, the coverage info to be incorrect. For example, the @racket[for] loops will always have their variable binding positions marked as uncovered, unless the for clause binds only one variable and uses one of the special sequence forms like @racket[in-list]. Another common instance of this is that -@racket[provide]s in @seclink["top" #:doc '(lib "typed-racket/scribblings/ts-guide.scrbl") -"typed/racket"]. +@racket[provide]d identifiers in @seclink["top" #:doc + '(lib "typed-racket/scribblings/ts-guide.scrbl") "typed/racket"] are marked as uncovered.