spelling and pod fixes
[gitmo/MooseX-Types.git] / lib / MooseX / Types / Util.pm
index 93601e2..579c9a4 100644 (file)
@@ -1,10 +1,6 @@
 package MooseX::Types::Util;
 
-=head1 NAME
-
-MooseX::Types::Util - Common utility functions for the module
-
-=cut
+#ABSTRACT: Common utility functions for the distribution
 
 use warnings;
 use strict;
@@ -14,7 +10,7 @@ use base 'Exporter';
 
 =head1 DESCRIPTION
 
-This package the exportable functions that many parts in 
+This package the exportable functions that many parts in
 L<MooseX::Types> might need.
 
 =cut
@@ -48,9 +44,9 @@ sub filter_tags {
 
   TypeConstraint | Undef = has_available_type_export($package, $name);
 
-This function allows you to introspect if a given type export is available 
+This function allows you to introspect if a given type export is available
 I<at this point in time>. This means that the C<$package> must have imported
-a typeconstraint with the name C<$name>, and it must be still in its symbol
+a type constraint with the name C<$name>, and it must be still in its symbol
 table.
 
 Two arguments are expected:
@@ -98,10 +94,6 @@ sub has_available_type_export {
 
 L<MooseX::Types::Moose>, L<Exporter>
 
-=head1 AUTHOR
-
-See L<MooseX::Types/AUTHOR>.
-
 =head1 LICENSE
 
 This program is free software; you can redistribute it and/or modify