From: H.Merijn Brand Date: Wed, 10 Jun 2009 19:07:07 +0000 (+0200) Subject: Small typo in example. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=92a24ac3df5779ed0c9681cafefdd31fc6e1ae98;p=p5sagit%2Fp5-mst-13.2.git Small typo in example. Thanks to "Jim Ferguson" --- diff --git a/pod/perlretut.pod b/pod/perlretut.pod index 7131769..22fc44a 100644 --- a/pod/perlretut.pod +++ b/pod/perlretut.pod @@ -2088,7 +2088,7 @@ algorithm. while( $command = <> ){ $command =~ s/^\s+|\s+$//g; # trim leading and trailing spaces if( ( @matches = $kwds =~ /\b$command\w*/g ) == 1 ){ - print "command: '$matches'\n"; + print "command: '@matches'\n"; } elsif( @matches == 0 ){ print "no such command: '$command'\n"; } else {