reorder return logic

master
Zaahir Moolla 2014-08-20 15:18:51 +00:00
parent 874be8d5d6
commit 4c170fa4ec
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ attribution web => [ 'robert.io', 'Robert Picard' ],
twitter => ['http://twitter.com/__rlp', '__rlp'];
handle remainder => sub {
return upside_down( $_ ) if $_;
return;
return unless $_;
return upside_down( $_ );
};
1;