Typo (Not a bug per se, more of a correction)

In Section 15 (Blocks, Procs, and Lambdas), Part 13 (Lambda Syntax), there is an error in one of the strings. Both the renaissance painter and the turtle are named michelangelo rather than michaelangelo.

strings = ["leonardo", "donatello", "raphael", "michaelangelo"]
should become
strings = ["leonardo", "donatello", "raphael", "michelangelo"]

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.