Loading Moose in your class also turns on the C<strict> and
C<warnings> pragmas in your class for you.
-It also creates a L<Moose::Meta::Class> object for your class. This
-metaclass object is now available by calling a C<meta> method on your
-class, for example C<< Person->meta >>.
-
The metaclass object an introspection API for your class. It is also
used by Moose itself under the hood to add attributes, define parent
classes, and so on. In fact, all of Moose's sugar does the real work
L<Moose::Util::Constraints>. See the L<Moose::Manual::Types> document
for more about types.
+It also creates a L<Moose::Meta::Class> object for your class. This
+metaclass object is now available by calling a C<meta> method on your
+class, for example C<< Person->meta >>.
+
=head1 SUBCLASSING
Moose provides a simple sugar function for declaring your parent