fix Float which doesn't exist with Num which does
Chris Prather [Wed, 4 Jun 2008 15:18:44 +0000 (15:18 +0000)]
ChangeLog
lib/MooseX/Getopt/OptionTypeMap.pm

index 95775ae..bcf6126 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 Revision history for Perl extension MooseX-Getopt
 
+0.14 ???
+       * MooseX::Getopt::OptionTypeMap
+         - Change 'Float' which doesn't exist to 'Num' which does (perigrin)
+
 0.13 Saturday, May 24, 2008
     * MooseX::Getopt
       - Commandline option shouldn't be required in the
index 9b94bcb..c9e1e05 100644 (file)
@@ -11,7 +11,7 @@ my %option_type_map = (
     'Bool'     => '!',
     'Str'      => '=s',
     'Int'      => '=i',
-    'Float'    => '=f',
+    'Num'      => '=f',
     'ArrayRef' => '=s@',
     'HashRef'  => '=s%',    
 );