* Add current $VERSION to all files.
[gitmo/MooseX-Getopt.git] / lib / MooseX / Getopt.pm
index ce091a6..49ac048 100644 (file)
@@ -1,5 +1,9 @@
 
 package MooseX::Getopt;
+
+our $VERSION   = '0.150001';
+our $AUTHORITY = 'cpan:STEVAN';
+
 use Moose::Role;
 
 use Moose::Util::TypeConstraints;
@@ -15,10 +19,6 @@ use MooseX::Getopt::Meta::Attribute::NoGetopt;
 use Getopt::Long ();
 
 
-our $VERSION   = '0.150001';
-our $AUTHORITY = 'cpan:STEVAN';
-
-
 use constant _default_getopt_session => 'MooseX::Getopt::Session';
 
 
@@ -207,7 +207,7 @@ which would enable the following command line options:
 These type constraints are set up as properly typed options with
 Getopt::Long, using the C<=i>, C<=f> and C<=s> modifiers as appropriate.
 
-=item I<Bool|Int>, I<Bool|Float>, I<Bool|Str>
+=item I<Defined|Int>, I<Defined|Float>, I<Defined|Str>
 
 These type constaints are set up as properly typed options with
 Getopt::Long, using the C<:i>, C<:f> and C<:s> modifiers as appropriate.