doc formatting and spelling fixes
[gitmo/MooseX-Types-Structured.git] / lib / MooseX / Meta / TypeCoercion / Structured.pm
1 package ## Hide from PAUSE
2  MooseX::Meta::TypeCoercion::Structured;
3 # ABSTRACT: Coerce structured type constraints.
4
5 use Moose;
6 extends 'Moose::Meta::TypeCoercion';
7
8 =head1 DESCRIPTION
9
10 We need to make sure we can properly coerce the structure elements inside a
11 structured type constraint.  However requirements for the best way to allow
12 this are still in flux.  For now this class is a placeholder.
13
14 =head1 SEE ALSO
15
16 The following modules or resources may be of interest.
17
18 L<Moose>, L<Moose::Meta::TypeCoercion>
19
20 =cut
21
22 __PACKAGE__->meta->make_immutable(inline_constructor => 0);