From f4b9c71af394071ba1efa297d8ed08eab134cfc1 Mon Sep 17 00:00:00 2001 From: Spencer Florence Date: Sat, 14 Feb 2015 22:10:01 -0500 Subject: [PATCH] updating contracts --- private/contracts.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/private/contracts.rkt b/private/contracts.rkt index 64efa99..01b618f 100644 --- a/private/contracts.rkt +++ b/private/contracts.rkt @@ -3,6 +3,6 @@ (require racket/contract) (define file-coverage/c (listof (list/c boolean? srcloc?))) -(define coverage/c (hash/c (and/c path-string? absolute-path?) - file-coverage/c)) +;; if its a file path, will be an absolute path +(define coverage/c (hash/c any/c file-coverage/c)) (define coverage-gen/c (->* (coverage/c) (path-string?) any))