From 46d03bfd415ee58a6a6bea4802aac97188be5bee Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Fri, 2 May 2014 11:45:45 -0700 Subject: [PATCH] fix for issue #3 --- scribblings/decode.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scribblings/decode.scrbl b/scribblings/decode.scrbl index e1cfe82..63e80a4 100644 --- a/scribblings/decode.scrbl +++ b/scribblings/decode.scrbl @@ -169,7 +169,7 @@ The @racket[_tags-to-exclude] argument is useful if you're decoding source that' Because it's convenient, Pollen categorizes tagged X-expressions into two categories: @italic{block} and @italic{inline}. Why is it convenient? When using @racket[decode], you often want to treat the two categories differently. Not that you have to. But this is how you can. @defparam[project-block-tags block-tags (listof txexpr-tag?) - #:value block-tags]{ + #:value (listof symbol?)]{ A parameter that defines the set of tags that @racket[decode] will treat as blocks. This parameter is initialized with the HTML block tags, namely: @code[(format "~a" html:block-tags)]}