From 88e92b48372788db22c7f8242b8ed6cafbbb92c4 Mon Sep 17 00:00:00 2001 From: Philip McGrath Date: Thu, 16 Aug 2018 03:02:36 -0500 Subject: [PATCH] rackunit/docs-complete: accept any `module-path?` The contract on `check-docs` was unnecessarily restricted to `symbol?` module paths, which prevents using `check-docs` with submodules. --- pkgs/racket-index/rackunit/docs-complete.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-index/rackunit/docs-complete.rkt b/pkgs/racket-index/rackunit/docs-complete.rkt index 98eba6e74b..52b34254ac 100644 --- a/pkgs/racket-index/rackunit/docs-complete.rkt +++ b/pkgs/racket-index/rackunit/docs-complete.rkt @@ -9,7 +9,7 @@ ;; checks to make sure that all of the exports of ;; the 'what' library are documented -(provide/contract [check-docs (->* (symbol?) +(provide/contract [check-docs (->* (module-path?) (#:skip (or/c regexp? symbol? #f