minor typos in new Mason.pm
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Request / Upload.pm
index a31df3d..43a7cff 100644 (file)
@@ -8,6 +8,7 @@ use IO::File   ();
 
 __PACKAGE__->mk_accessors(qw/filename size tempname type/);
 
+sub new { shift->SUPER::new( ref( $_[0] ) ? $_[0] : {@_} ) }
 
 =head1 NAME
 
@@ -35,14 +36,6 @@ to the upload data.
 
 =over 4
 
-=item $upload->new
-
-Constructor. Normally only for engine use.
-
-=cut 
-
-sub new { shift->SUPER::new( ref( $_[0] ) ? $_[0] : {@_} ) }
-
 =item $upload->copy_to
 
 Copies tempname using C<File::Copy>. Returns true for success, false otherwise.