From c607eb3c7972c507925a404387df858ace727aef Mon Sep 17 00:00:00 2001 From: Leandro Facchinetti Date: Sun, 19 Jun 2016 16:16:08 -0400 Subject: [PATCH] Fix typo --- pollen/scribblings/big-picture.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pollen/scribblings/big-picture.scrbl b/pollen/scribblings/big-picture.scrbl index 64dca28..c0c4b8d 100644 --- a/pollen/scribblings/big-picture.scrbl +++ b/pollen/scribblings/big-picture.scrbl @@ -63,7 +63,7 @@ As a Racket X-expression, this would be written: @nested[#:style 'code-inset]{@verbatim{(body (h1 "Hello world") (p "Nice to " (i "see") " you."))}} -More will be said about X-expressions. But a several advantages should be evident already. First, without the redundant angle brackets, the X-expression is arguably more readable than the equivalent HTML. Second, an X-expression is preferable to treating HTML as a simple string, because it preserves the internal structure of the element. Third, an X-expression is a native data type in Racket. +More will be said about X-expressions. But several advantages should be evident already. First, without the redundant angle brackets, the X-expression is arguably more readable than the equivalent HTML. Second, an X-expression is preferable to treating HTML as a simple string, because it preserves the internal structure of the element. Third, an X-expression is a native data type in Racket. @section{Pollen command syntax}