NAME

Tie::Ispell - Ties an hash with an ispell dictionary

VERSION

Version 0.01

SYNOPSIS

use Tie::Ispell;

tie %dict, 'Tie::Ispell', "english";

if ($dict{dog}) {
  print "dog is a word"
}

FUNCTIONS

TIEHASH

Used for the tie method. Use tie as:

tie %dic, 'Tie::Ispell', 'dictionaryname';

FETCH

Fetches a word from the ispell dictionary

$dic{dogs} # returns dog
$dic{dog}  # returns dog

AUTHOR

Alberto Simoes, <ambs@cpan.org>

Jose Joao Almeida, <jj@di.uminho.pt>

BUGS

Please report any bugs or feature requests to bug-tie-ispell@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Copyright 2004 Natura Project, All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.