From 322e1ec44e0c1b43671f72cdef56de8714e7c72c Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Mon, 17 Feb 2014 11:32:00 -0800 Subject: [PATCH] another 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 564715b..b21d1b5 100644 --- a/scribblings/tagged-xexpr.scrbl +++ b/scribblings/tagged-xexpr.scrbl @@ -242,7 +242,7 @@ Recursively apply @racket[_proc] to all elements, leaving tags and attributes al (map-elements upcaser tx) ] -In practice, most @racket[_xexpr-element]s are strings. But woe befalls those who pass string procedures to @racket[map-element], because an @racket[_xexpr-element] can be any kind of @racket[xexpr?], and an @racket[xexpr?] is not necessarily a string. +In practice, most @racket[_xexpr-element]s are strings. But woe befalls those who pass string procedures to @racket[map-elements], because an @racket[_xexpr-element] can be any kind of @racket[xexpr?], and an @racket[xexpr?] is not necessarily a string. @examples[#:eval my-eval (define tx '(p "Welcome to" (strong "Mars" amp "Sons")))