Perl in a Nutshell, 2nd Edition by Stephen Spainhour, Ellen Siever, Nate Patwardhan The following errata were *corrected* in the 5/07 reprint. This page was updated April 26, 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 ####################################### {66} 2nd Paragraph under "Pattern-Matching Operators" heading; m/pattern/gimosxe -> m/pattern/gimosx ####################################### (302) 3rd paragraph, under Net::FTP; Implements a simple FTP client in Perl (see Chapter 16). -> Implements a simple FTP client in Perl (see Chapter 18). ####################################### {375} Topmost Perl script, 2nd line; print << EOF -> print < $ENV{'SERVER_PORT'}
$ENV{'SERVER_SOFTWARE'}
$ENV{'SERVER_PROTOCOL'}
$ENV{'GATEWAY_INTERFACE'}
-> $ENV{'SERVER_NAME'} $ENV{'SERVER_PORT'} $ENV{'SERVER_SOFTWARE'} $ENV{'SERVER_PROTOCOL'} $ENV{'GATEWAY_INTERFACE'} ####################################### {397} line 26 (syntax example in mid-page) under textfield; print $query->textfield(-name=>'name', -default=>'value', -> print $query->textfield(-name=>'name', -value=>'value', ####################################### (566) Section "path_query"; Sets and gets the escapted path and query components. -> Sets and gets the escaped path and query components. ####################################### {566} Section "path_segments", 2nd sentence; In a scalar content, ... -> In a scalar context, ... ####################################### {566} Section "path_segments", 3rd sentence; In a list contents, ... -> In a list context, ... #######################################