Learning Ruby by Michael Fitzgerald This errata page lists errors outstanding in the most recent printing. If you have technical questions or error reports, you can send them to booktech@oreilly.com. Please specify the printing date of your copy. This page was updated October 16, 2007. Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem ?page-number?: reader question or request for clarification Confirmed errors: [18] Mid-page; It should be noted the the One-Click Installer does not include the Tcl/Tk library (among others) and you will have to download them separately. Because of this, I prefer to install Ruby on Windows using instructions in the next section. (215) Chapter 4 review question 9; to_a was the intended answer but split(//) will work too. Here is the difference: irb(main):001:0> "hello there".split(//) => ["h", "e", "l", "l", "o", " ", "t", "h", "e", "r", "e"] irb(main):002:0> "hello there".to_a => ["hello there"]