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

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,