Skip to content

Commit e9da854

Browse files
committed
Fix typo in MVC reference documentation
1 parent 0042243 commit e9da854

File tree

1 file changed

+2
-2
lines changed
  • spring-framework-reference/src

1 file changed

+2
-2
lines changed

spring-framework-reference/src/mvc.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3412,7 +3412,7 @@ background=/themes/cool/img/coolBg.jpg</programlisting>
34123412
<filename>MultipartFile</filename> in the method parameters:</para>
34133413

34143414
<programlisting language="java">@Controller
3415-
public class FileUpoadController {
3415+
public class FileUploadController {
34163416

34173417
@RequestMapping(value = "/form", method = RequestMethod.POST)
34183418
public String handleFormUpload(@RequestParam("name") String name,
@@ -3440,7 +3440,7 @@ public class FileUpoadController {
34403440
parameter:</para>
34413441

34423442
<programlisting language="java">@Controller
3443-
public class FileUpoadController {
3443+
public class FileUploadController {
34443444

34453445
@RequestMapping(value = "/form", method = RequestMethod.POST)
34463446
public String handleFormUpload(@RequestParam("name") String name,

0 commit comments

Comments
 (0)