Perl in a Nutshell, 2nd Edition by Stephen Spainhour, Ellen Siever, Nate Patwardhan The following errata were *corrected* in the 6/05 reprint: 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 (52) 6 lines from the bottom; "The conditional is evaluated first with the while and until modifiers except when applied to ado {} statement . . . " NOW READS: "...applied to a do {} statement..." (344) Test::More is called "Yet another framework for writing test scripts. Its more flexible successor is Test::Builder" NOW READS: "Test::More a more flexible successor to Test::Builder, which you probably don't -- or won't -- need to deal with directly. That is to say, Test::More is built on top of Test::Builder, and makes your life easier." (464) $mailer = Mail::Mailer->new('sendmail)'; NOW READS: $mailer = Mail::Mailer->new('sendmail'); {527} code block; "use URI::URL;" HAS BEEN ADDED to the top of the code block Also, "$url = URI::URL->new('www.ora ..." NOW READS: $url = URI::URL->new('http://www.ora ...". (556) 2nd code example; my $html = '

Some Text.

'; NOW READS: my $html = '

Some Text. My name is Nate!

';