From b57d3c1b68858b2bfeba6c80d5c318412731fb55 Mon Sep 17 00:00:00 2001 From: ben Date: Wed, 16 Dec 2015 03:26:25 -0500 Subject: [PATCH] [scribblings] note: no-colon --- scribblings/trivial.scrbl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scribblings/trivial.scrbl b/scribblings/trivial.scrbl index 10f7773..7fe9e18 100644 --- a/scribblings/trivial.scrbl +++ b/scribblings/trivial.scrbl @@ -10,7 +10,10 @@ @(define trivial-eval (make-base-eval #:lang 'typed/racket/base '(begin (require trivial)))) This library exports a collection of @hyperlink["http://www.greghendershott.com/fear-of-macros/"]{macros} that implement statically-checked interfaces to standard library functions. -All exported macros are named with a trailing colon (meant as a hint that some extra type-checking may happen at the call site). +All exported macros are named with a trailing colon (meant as a hint that some extra type-checking may happen at the call site).@note{ + Not a fan of the colon convention? @racket[trivial/no-colon] provides the same identifiers, colon-free. + Same goes for each sub-collection, for instance you can require @racket[trivial/math/no-colon]. +} @emph{Hidden Agenda:}