X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FTypes%2FParameterizable.pm;h=da97bfc54a5d46fd39357863fbb42b62cfb6a3f4;hb=98d12747174fea12282d4010278978b389b5ad1e;hp=f7f7c78421750a2b051250bcea6cfc42523ee675;hpb=0c6f5a913b5a4dda9f888e25fd1a5d003d796e1f;p=gitmo%2FMooseX-Dependent.git diff --git a/lib/MooseX/Types/Parameterizable.pm b/lib/MooseX/Types/Parameterizable.pm index f7f7c78..da97bfc 100644 --- a/lib/MooseX/Types/Parameterizable.pm +++ b/lib/MooseX/Types/Parameterizable.pm @@ -106,7 +106,7 @@ values for an Int (integer) type constraint: The type parameter must be valid against the type constraint given. If you pass an invalid value this throws a hard Moose exception. You'll need to capture it -in an eval or related exception catching system (see L or .) +in an eval or related exception catching system (see L or L.) For example the following would throw a hard error (and not just return false) RangedInt([{min=>99, max=>10}])->check(10); ## Not OK, not a valid Range!