Fix broken pod.
Matthew Horsfall [Thu, 5 Mar 2015 13:47:01 +0000 (08:47 -0500)]
The code was rendering as "for my $field ($c->req-upload)>".

lib/Catalyst/Manual/Cookbook.pod

index f31b41c..f689e41 100644 (file)
@@ -1425,7 +1425,7 @@ And in the controller:
         $c->stash->{template} = 'file_upload.html';
     }
 
-C<for my $field ($c-E<gt>req->upload)> loops automatically over all file
+C<< for my $field ($c->req->upload) >> loops automatically over all file
 input fields and gets input names. After that is basic file saving code,
 just like in single file upload.