33ae9d1
diff -up Test-Spelling-0.11/lib/Test/Spelling.pm.BAD Test-Spelling-0.11/lib/Test/Spelling.pm
33ae9d1
--- Test-Spelling-0.11/lib/Test/Spelling.pm.BAD	2010-01-20 19:35:34.771928737 -0500
33ae9d1
+++ Test-Spelling-0.11/lib/Test/Spelling.pm	2010-01-20 19:37:45.806790957 -0500
33ae9d1
@@ -12,7 +12,7 @@ use Carp;
33ae9d1
 our $VERSION = '0.11';
33ae9d1
 
33ae9d1
 my $Test        = Test::Builder->new;
33ae9d1
-my $Spell_cmd   = 'spell';
33ae9d1
+my $Spell_cmd   = 'hunspell -l';
33ae9d1
 my $Spell_temp  = File::Temp->new->filename;
33ae9d1
 
33ae9d1
 sub import {
33ae9d1
@@ -155,7 +155,7 @@ Test::Spelling - check for spelling erro
33ae9d1
 
33ae9d1
 C<Test::Spelling> lets you check the spelling of a POD file, and report
33ae9d1
 its results in standard C<Test::Simple> fashion. This module requires the
33ae9d1
-F<spell> program.
33ae9d1
+F<hunspell> program.
33ae9d1
 
33ae9d1
     use Test::More;
33ae9d1
     use Test::Spelling;
33ae9d1
@@ -172,7 +172,7 @@ module distribution:
33ae9d1
 
33ae9d1
 Note, however that it is not really recommended to include this test with a
33ae9d1
 CPAN distribution, or a package that will run in an uncontrolled environment,
33ae9d1
-because there's no way of predicting if F<spell> will be available or the
33ae9d1
+because there's no way of predicting if F<hunspell> will be available or the
33ae9d1
 word list used will give the same results (what if it's in a different language,
33ae9d1
 for example?). You can have the test, but don't add it to F<MANIFEST> (or add
33ae9d1
 it to F<MANIFEST.SKIP> to make sure you don't add it by accident). Anyway,
33ae9d1
@@ -189,7 +189,7 @@ ways to add per-file stopwords to each .
33ae9d1
 
33ae9d1
 =head1 DESCRIPTION
33ae9d1
 
33ae9d1
-Check POD files for spelling mistakes, using L<Pod::Spell> and F<spell> to do
33ae9d1
+Check POD files for spelling mistakes, using L<Pod::Spell> and F<hunspell> to do
33ae9d1
 the heavy lifting.
33ae9d1
 
33ae9d1
 =head1 FUNCTIONS
33ae9d1
@@ -278,7 +278,7 @@ in verbatim blocks and code labeled with
33ae9d1
 
33ae9d1
 =head2 set_spell_cmd($command)
33ae9d1
 
33ae9d1
-If the F<spell> program has a different name or is not in your path, you can
33ae9d1
+If the F<hunspell> program has a different name or is not in your path, you can
33ae9d1
 specify an alternative with C<set_spell_cmd>. Any command that takes text
33ae9d1
 from standard input and prints a list of misspelled words, one per line, to
33ae9d1
 standard output will do. For example, you can use C<aspell -l>.