From ab46c7173e9cf96d082838971606889e2f6a1675 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Tue, 29 Nov 2016 09:33:33 -0800 Subject: [PATCH] fix error in tutorial (closes #133) --- pollen/private/ts.rktd | 2 +- pollen/scribblings/tutorial-first.scrbl | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/pollen/private/ts.rktd b/pollen/private/ts.rktd index 6a42897..d3f50e0 100644 --- a/pollen/private/ts.rktd +++ b/pollen/private/ts.rktd @@ -1 +1 @@ -1480342815 +1480440813 diff --git a/pollen/scribblings/tutorial-first.scrbl b/pollen/scribblings/tutorial-first.scrbl index c280c41..fd3de3f 100644 --- a/pollen/scribblings/tutorial-first.scrbl +++ b/pollen/scribblings/tutorial-first.scrbl @@ -443,21 +443,17 @@ One caveat: because the preprocessor only deals with text, the Pollen commands y @fileblock["odd-values.html.pp" @codeblock{ #lang pollen - -◊(void) ; this will become an empty string +◊(void)◊; this will become an empty string ◊(string->path "foo") ◊#\C -◊sqrt ◊(sqrt 2) ◊(list 1 2 3 4 5) ◊(map sqrt (list 1 2 3 4 5)) }] @repl-output{ - foo C -# 1.4142135623730951 '(1 2 3 4 5) '(1 1.4142135623730951 1.7320508075688772 2 2.23606797749979)}