applying a documentation fix regarding file uploads from Carl Franks
Jonathan Rockway [Fri, 17 Nov 2006 16:53:42 +0000 (16:53 +0000)]
lib/Catalyst/Request.pm

index 7624db7..ce1a428 100644 (file)
@@ -484,7 +484,8 @@ sub upload {
 =head2 $req->uploads
 
 Returns a reference to a hash containing uploads. Values can be either a
-hashref or a arrayref containing L<Catalyst::Request::Upload> objects.
+L<Catalyst::Request::Upload> object, or an arrayref of 
+L<Catalyst::Request::Upload> objects.
 
     my $upload = $c->request->uploads->{field};
     my $upload = $c->request->uploads->{field}->[0];