switch from tabs to spaces

master
moollaza 2015-03-09 18:30:15 +00:00
parent 93ca902e6d
commit 3f5f508ec4
1 changed files with 4 additions and 4 deletions

View File

@ -27,12 +27,12 @@ triggers any => "triggerWord", "trigger phrase";
# Handle statement
handle remainder => sub {
# optional - regex guard
# return unless qr/^\w+/;
# optional - regex guard
# return unless qr/^\w+/;
return unless $_; # Guard against "no answer"
return unless $_; # Guard against "no answer"
return $_;
return $_;
};
1;