From: rodrigolive Date: Wed, 2 Sep 2009 23:37:00 +0000 (+0200) Subject: Documenting that 'has' comes before 'with' when satisfying role requirements - part II X-Git-Tag: 0.89_02~48 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bea7e77e03e156c31ab1db541ab2a352772c2bee;p=gitmo%2FMoose.git Documenting that 'has' comes before 'with' when satisfying role requirements - part II --- diff --git a/lib/Moose/Manual/Roles.pod b/lib/Moose/Manual/Roles.pod index 45265e4..888a238 100644 --- a/lib/Moose/Manual/Roles.pod +++ b/lib/Moose/Manual/Roles.pod @@ -188,7 +188,7 @@ I the C function that composes the role. has 'stress' => ( is => 'rw', - isa => 'Int', + isa => 'Int', ); with 'Breakable';