Small typo in example.
H.Merijn Brand [Wed, 10 Jun 2009 19:07:07 +0000 (21:07 +0200)]
Thanks to "Jim Ferguson"

pod/perlretut.pod

index 7131769..22fc44a 100644 (file)
@@ -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 {