The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Pod::Spelling::Ispell - Spell-test POD with Ispell

SYNOPSIS

        my $o = Pod::Spelling::Ispell->new(
                allow_words => qw[ Django Rheinhardt ],
        );
        warn "Spelling errors: ", join ', ', $o->check_file( 'blib/Paris.pm' );

DESCRIPTION

Checks the spelling in POD using the ispell program, which is expected to be found on the system.

When calling the constructor, you may supply the argument ispell_path to specify the full path to the ispell executable. This module has a guess, but may have missed possible locations.

For details of options and methods, see the parent class, Pod::Spelling.

SEE ALSO

Pod::Spelling, Lingua::Ispell.

AUTHOR

Lee Goddard (lgoddard-at-cpan.org)

LICENCE AND COPYRIGHT

Copyright (C) 2011, Lee Goddard. All Rights Reserved.

Made available under the same terms as Perl.