Skip to content

Commit

Permalink
use the same style consistently
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Dec 20, 2016
1 parent e5a957d commit 3d6b372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Mojolicious/Guides/Cookbook.pod
Expand Up @@ -606,7 +606,7 @@ perform computationally expensive operations without blocking the event loop.
},
sub {
my ($subprocess, $err, @results) = @_;
return $c->reply->exception($err) if $err;
$c->reply->exception($err) and return if $err;
$c->render(text => "I $results[0] $results[1]!");
}
);
Expand Down

0 comments on commit 3d6b372

Please sign in to comment.