From: Dave Rolsky Date: Tue, 23 Dec 2008 14:23:29 +0000 (+0000) Subject: Tidy the code X-Git-Tag: 0.66~27^2~22 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=08f950aa98b5c54cd189b0832c9e21f8e480b912;p=gitmo%2FMoose.git Tidy the code --- diff --git a/lib/Moose/Manual/MethodModifiers.pm b/lib/Moose/Manual/MethodModifiers.pm index c8519f7..c60837c 100644 --- a/lib/Moose/Manual/MethodModifiers.pm +++ b/lib/Moose/Manual/MethodModifiers.pm @@ -16,11 +16,11 @@ It's probably easiest to understand this feature with a few examples: use Moose; sub foo { - print "foo\n"; + print "foo\n"; } before 'foo' => sub { print "about to call foo\n"; }; - after 'foo' => sub { print "just called foo\n"; }; + after 'foo' => sub { print "just called foo\n"; }; around 'foo' => sub { my $orig = shift;