Skip to content

Commit af0aa0d

Browse files
committed
Fix bracket
1 parent 4892c8d commit af0aa0d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

www/assignments/5.scrbl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ AST representing a valid Hustle+ expression, if possible, from a list
241241
of tokens.
242242
243243
As an example, @racket[parse] should produce
244-
@racket[(prim-e 'add1 (list (prim-e 'sub1 (list (int-e 7))))))]
244+
@racket[(prim-e `add1 (list (prim-e `sub1 (list (int-e 7)))))]
245245
if given
246246
247247
@racketblock['(lparen (prim add1) lparen (prim sub1) 7 rparen rparen eof)]

0 commit comments

Comments
 (0)