From d175f4c6267519b9e930e0f884ff26207ee227d5 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 22 Jun 2020 08:19:06 -0600 Subject: [PATCH] reference: fix backquote rendering Drop a broken workaround and rely on a Scribble repair. Closes #3259 --- pkgs/racket-doc/scribblings/reference/syntax.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-doc/scribblings/reference/syntax.scrbl b/pkgs/racket-doc/scribblings/reference/syntax.scrbl index cb04af8072..ee05c480be 100644 --- a/pkgs/racket-doc/scribblings/reference/syntax.scrbl +++ b/pkgs/racket-doc/scribblings/reference/syntax.scrbl @@ -2875,7 +2875,7 @@ form is typically abbreviated with @litchar{`}, @litchar{,}, or `(0 1 2) `(1 ,(+ 1 2) 4) `#s(stuff 1 ,(+ 1 2) 4) -(eval:alts #,(racketfont (racketvalfont "`#hash((\"a\" . ") "," (racket (+ 1 2)) (racketvalfont "))")) #hash(("a" . 3))) +`#hash(("a" . ,(+ 1 2))) `#hash((,(+ 1 2) . "a")) `(1 ,@(list 1 2) 4) `#(1 ,@(list 1 2) 4)