From: Dave Rolsky Date: Sun, 5 Jul 2009 04:07:08 +0000 (-0500) Subject: Add some space in the conditional X-Git-Tag: 0.89~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=854809075427abb0da2bb9d99d8f829ce91c0831;p=gitmo%2FMoose.git Add some space in the conditional --- diff --git a/lib/Moose/Manual/Attributes.pod b/lib/Moose/Manual/Attributes.pod index 0c269d9..4ba0a55 100644 --- a/lib/Moose/Manual/Attributes.pod +++ b/lib/Moose/Manual/Attributes.pod @@ -460,7 +460,7 @@ set: my $msg = $self->name; - if (@_ > 2) { + if ( @_ > 2 ) { $msg .= " - old size was $old_size"; }