applying a documentation fix regarding file uploads from Carl Franks
[catagits/Catalyst-Runtime.git] / 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];