From b5f795249655e9818ed4ade8ccadc564dc3d1c4f Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sat, 28 Nov 2020 16:58:44 +0000 Subject: [PATCH] Fixed minor typo in the pod. --- lib/Net/Dict.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }; }