Subject: | Uppercase CRC in notes breaks things |
http://search.cpan.org/~fays/Digest-Crc32-0.01/Crc32.pm
The docs on this page say "Digest::CRC32" all over the place, but CPAN installer complains
unless the "Crc" is used, and the Perl doesn't run the example either.
use Digest::CRC32;
my $crc = new Digest::CRC32();
should be:
use Digest::Crc32;
my $crc = new Digest::Crc32();