Errata for Picturing Programs -- 6

© Stephen Bloch 2010

Sept. 5, 2010

p. 216: Misplaced right-parentheses in the examples for bad-item:

(check-expect (bad-item "hat") (text) "What's a hat?" 12 "red")
(check-expect (bad-item "belt") (text) "What's a belt?" 12 "red")
should of course be
(check-expect (bad-item "hat") (text "What's a hat?" 12 "red"))
(check-expect (bad-item "belt") (text "What's a belt?" 12 "red"))