X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FManual%2FTypes.pod;h=b4fda78094ee1e8934759465b1e76ab72d794272;hb=72042ad72c251a1ae589675e696b31e0b47e8287;hp=3cce8b72c0767a9a2f9225e21e4ecdfa48031814;hpb=8e5dd3fb4d0102f0e91b658540172825831ee49d;p=gitmo%2FMoose.git diff --git a/lib/Moose/Manual/Types.pod b/lib/Moose/Manual/Types.pod index 3cce8b7..b4fda78 100644 --- a/lib/Moose/Manual/Types.pod +++ b/lib/Moose/Manual/Types.pod @@ -1,8 +1,10 @@ -=pod +package Moose::Manual::Types; + +# ABSTRACT: Moose's type system -=head1 NAME +__END__ -Moose::Manual::Types - Moose's type system +=pod =head1 TYPES IN PERL? @@ -200,7 +202,7 @@ export your types as perl constants. has 'counter' => (is => 'rw', isa => PositiveInt); This lets you use a short name rather than needing to fully qualify the name -everywhere. It also allows you to write easily create parameterized types: +everywhere. It also allows you to easily create parameterized types: has 'counts' => (is => 'ro', isa => HashRef[PositiveInt]); @@ -422,17 +424,4 @@ In order to ameliorate this problem, we recommend defining I of your custom types in one module, C, and then loading this module in all of your other modules. -=head1 AUTHOR - -Dave Rolsky Eautarch@urth.orgE - -=head1 COPYRIGHT AND LICENSE - -Copyright 2009-2010 by Infinity Interactive, Inc. - -L - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. - =cut