Moose class.
For instance, L<Moose::Policy::SingleInheritence> enforces that all
-specified Moose classes can only use single inheritence. It does this
+specified Moose classes can only use single inheritance. It does this
by trapping the call to C<superclasses> on the metaclass and only allowing
you to assign a single superclass.
you try to set a Moose::Policy and there is a C<meta> method available,
not only will kittens die, but your program will too.
-=head2 Policys are class scoped
+=head2 Policies are class scoped
-You must repeat the policy for each class you want to us it. It is B<not>
+You must repeat the policy for each class you want to use it. It is B<not>
inherited. This may change in the future, probably it will be a Moose::Policy
-itself to allow Moose policys to be inherited.
+itself to allow Moose policies to be inherited.
=head1 THE POLICY
Roles are an excellent way to combine sets of behaviors together into one, and
custom metaclasses are actually better composed by roles then by inheritence.
The ideal situation is that this module will provide a set of roles which can be
-used to compose you meta-policy with relative ease.
+used to compose your meta-policy with relative ease.
=back