From 29ac060b8f5a9ff9394e2f133dea3770de9e6c40 Mon Sep 17 00:00:00 2001 From: Leandro Facchinetti Date: Tue, 21 Jun 2016 15:10:28 -0400 Subject: [PATCH] Fix consistency of using `compose1' --- pollen/scribblings/tutorial-third.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pollen/scribblings/tutorial-third.scrbl b/pollen/scribblings/tutorial-third.scrbl index 16f1351..d5c076f 100644 --- a/pollen/scribblings/tutorial-third.scrbl +++ b/pollen/scribblings/tutorial-third.scrbl @@ -819,7 +819,7 @@ Here, we'll use the @filepath{pollen.rkt} we devised in the previous section to (define (root . elements) (txexpr 'root empty (decode-elements elements #:txexpr-elements-proc decode-paragraphs - #:string-proc (compose smart-quotes smart-dashes)))) + #:string-proc (compose1 smart-quotes smart-dashes)))) }]