Help for this page
sub next_word { my $self = shift; ... $word = $1; next if $self->{ignore_list}{$word}; last if !$sp->check($word); # 263
use warnings; use strict; ... use Text::SpellChecker; my $checker = Text::SpellChecker->new( text => "Foor" ); my $word = $checker->next_word;