From 4748ef4e25b0b2b8d2e32694f6f6b20dde2cced7 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Sat, 2 Dec 2017 10:27:32 -0800 Subject: [PATCH] doc typo --- pollen/scribblings/decode.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pollen/scribblings/decode.scrbl b/pollen/scribblings/decode.scrbl index 6ca3100..8ea59e1 100644 --- a/pollen/scribblings/decode.scrbl +++ b/pollen/scribblings/decode.scrbl @@ -108,7 +108,7 @@ The @racket[_txexpr-elements-proc] argument is a procedure that operates on the #:string-proc (λ (s) (string-upcase s))) ] -So why do you need @racket[_txexpr-elements-proc]? Because some types of element decoding depend on context, thus it's necessary to handle the elements as a group. For instance, paragraph decodeion. The behavior is not merely a @racket[map] across each element, because elements are being removed and altered contextually: +So why do you need @racket[_txexpr-elements-proc]? Because some types of element decoding depend on context, thus it's necessary to handle the elements as a group. For instance, paragraph decoding. The behavior is not merely a @racket[map] across each element, because elements are being removed and altered contextually: @examples[#:eval my-eval (define (paras tx) (decode tx #:txexpr-elements-proc decode-paragraphs))