From 0562921c6752ae78c61bf64135d6fd86495b054d Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Wed, 28 Jul 2021 19:54:00 +0100 Subject: [PATCH] Fixed syntax error in documentation --- scribblings/anaphoric.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scribblings/anaphoric.scrbl b/scribblings/anaphoric.scrbl index a562b9c..448c227 100644 --- a/scribblings/anaphoric.scrbl +++ b/scribblings/anaphoric.scrbl @@ -157,7 +157,7 @@ using @racket[it]. @section{Anaphoric map and filter} -@defform[[(amap body lst)]]{ +@defform[(amap body lst)]{ Anaphoric @racket[map]. Binds the syntax parameter @racket[it] in the @racketid[body], and maps it over the list @racketid[lst]. Effectively the same as wrapping the @racketid[body] in a @racket[lambda] with an @racket[it] parameter. Unlike @racket[map], @racket[amap] @@ -173,7 +173,7 @@ using @racket[it]. @racketblock[(amap (* it it) '(1 2 3))] } -@defform[[(afilter body lst)]]{ +@defform[(afilter body lst)]{ Anaphoric @racket[filter]. Binds the syntax parameter @racket[it] in the @racketid[body], and filters the list @racketid[lst] using it. Effectively the same as wrapping the body in a @racket[lambda] with an @racket[it] parameter.