Fix typo in MVC reference documentation

This commit is contained in:
Chris Beams 2011-12-12 19:20:05 +00:00
parent 0042243a11
commit e9da854848
1 changed files with 2 additions and 2 deletions

View File

@ -3412,7 +3412,7 @@ background=/themes/cool/img/coolBg.jpg</programlisting>
<filename>MultipartFile</filename> in the method parameters:</para>
<programlisting language="java">@Controller
public class FileUpoadController {
public class FileUploadController {
@RequestMapping(value = "/form", method = RequestMethod.POST)
public String handleFormUpload(@RequestParam("name") String name,
@ -3440,7 +3440,7 @@ public class FileUpoadController {
parameter:</para>
<programlisting language="java">@Controller
public class FileUpoadController {
public class FileUploadController {
@RequestMapping(value = "/form", method = RequestMethod.POST)
public String handleFormUpload(@RequestParam("name") String name,