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