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