--- Alternative.pm 2003/11/18 10:30:10 1.8 +++ Alternative.pm 2003/11/18 13:54:14 1.9 @@ -7,7 +7,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); use Exporter; -$VERSION = '0.01'; +$VERSION = '0.02'; @ISA = ('Exporter'); #@EXPORT = qw(); @@ -187,9 +187,10 @@ =head1 DESCRIPTION -This module is designed to return all valid forms of a given word +This module is designed to return all forms of a given word (for example when you want to see all possible forms of some word -entered in search engine) +entered in search engine) which can be generated using affix file (from +ispell) or using findaffix output file (also part of ispell package) =head1 PUBLIC METHODS @@ -198,7 +199,7 @@ =item new The new() constructor (without parameters) create container for new language. -Only parametar it supports is DEBUG which turns on (some) debugging output. +Only parameter it supports is DEBUG which turns on (some) debugging output. =item load_affix @@ -208,7 +209,7 @@ This function loads output of findaffix program from ispell package. This is better idea (if you are creating affix file for particular language -yourself or you can get your hands on one) because affix file from ispel +yourself or you can get your hands on one) because affix file from ispell is limited to 26 entries (because each entry is denoted by single character). =item alternatives @@ -220,7 +221,7 @@ =item minimal This function returns minimal of all alternatives of a given word(s). It's -a poor man's version of normalize (because we don't know gramatic of +a poor man's version of normalize (because we don't know grammatic of particular language, just some spelling rules). =back