Subject: | Documentation error |
A poster to Perlmonks (http://perlmonks.org/index.pl?node_id=563774) got
confused because they tried to follow the docs literally. However, the
docs have an error in this line:
my $nilsimsa = Digest::Nilsimsa;
That's a bareword. What they need is this:
my $nilsimsa = Digest::Nilsimsa->new;
Cheers,
Ovid