From 07a9ad2ac5a2cea529165680fe7c7e507d276a87 Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Wed, 19 Feb 2020 23:37:06 +0100 Subject: [PATCH] utils: Restructure the provides. --- utils.rkt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/utils.rkt b/utils.rkt index 94f03f7..82f5b3c 100644 --- a/utils.rkt +++ b/utils.rkt @@ -7,9 +7,12 @@ (require (for-syntax syntax/parse) (for-syntax racket/list)) -(provide auto-hash-ref/explicit auto-hash-ref/:) -(provide (contract-out [eval-with (-> variable-mapping? any/c any)] - [extract-symbols (-> any/c list?)])) +(provide + ;; Functions with contracts + (contract-out [eval-with (-> variable-mapping? any/c any)] + [extract-symbols (-> any/c list?)]) + ;; Syntax + auto-hash-ref/explicit auto-hash-ref/:) ;;; =================== ;;; HashTable Injection