fix Float which doesn't exist with Num which does
[gitmo/MooseX-Getopt.git] / lib / MooseX / Getopt / OptionTypeMap.pm
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%',    
 );