From f83bd74f48ec8f8512dd210b4198006e7fca1bf9 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Mon, 17 Feb 2014 11:28:31 -0800 Subject: [PATCH] doc typo --- scribblings/tagged-xexpr.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scribblings/tagged-xexpr.scrbl b/scribblings/tagged-xexpr.scrbl index 31f1da9..564715b 100644 --- a/scribblings/tagged-xexpr.scrbl +++ b/scribblings/tagged-xexpr.scrbl @@ -181,7 +181,7 @@ Accessor functions for the individual pieces of a @racket[_tagged-xexpr]. [attrs xexpr-attrs? @(empty)] [elements xexpr-elements? @(empty)]) tagged-xexpr?] -Assemble a @racket[_tagged-xexpr] from its parts. If you don't need attributes, but you do have elements, you'll need to pass @racket[empty] as the second argument. Note that unlike @racket[xml->xexpr], if the attribute list is empty, it's not included in the resulting expression. +Assemble a @racket[_tagged-xexpr] from its parts. If you don't have attributes, but you do have elements, you'll need to pass @racket[empty] as the second argument. Note that unlike @racket[xml->xexpr], if the attribute list is empty, it's not included in the resulting expression. @examples[#:eval my-eval (make-tagged-xexpr 'div)