X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=src%2FModules%2Fspell.pl;h=705854dfdde8913266c9c61d6cd7e46697c665ec;hb=3936a3e1255582305fc4200485b71fa692e66bd3;hp=f6ff8896de92130e245bd356de9d33e8f9674825;hpb=8b54ff5060a6605e169acc0694cb00b89ed22cab;p=infobot.git diff --git a/src/Modules/spell.pl b/src/Modules/spell.pl index f6ff889..705854d 100644 --- a/src/Modules/spell.pl +++ b/src/Modules/spell.pl @@ -15,7 +15,7 @@ use strict; sub spell::spell { my $query = shift; if ($query =~ m/[^[:alpha:]]/) { - return("only one word of alphabetic characters supported"); + return('only one word of alphabetic characters supported'); } my $binary; @@ -33,11 +33,11 @@ sub spell::spell { } if (!$binary) { - return("no binary found."); + return('no binary found.'); } if (!&::validExec($query)) { - return("argument appears to be fuzzy."); + return('argument appears to be fuzzy.'); } my $reply = "I can't find alternate spellings for '$query'";