diff --git a/lib/Net/Dict.pod b/lib/Net/Dict.pod index 4cfc563..2c21ea7 100644 --- a/lib/Net/Dict.pod +++ b/lib/Net/Dict.pod @@ -71,7 +71,7 @@ which can be used to match words against a pattern. For example, using B strategy with a pattern "anti" would find all words in databases which start with "anti": - @mref = $dict->match('anti', 'prefix'); + $mref = $dict->match('anti', 'prefix'); foreach my $match (@{ $mref }) { ($db, $word) = @{ $match }; }