From e9da8548483fcd725a89e1eb12471f622b89cd19 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Mon, 12 Dec 2011 19:20:05 +0000 Subject: [PATCH] Fix typo in MVC reference documentation --- spring-framework-reference/src/mvc.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-framework-reference/src/mvc.xml b/spring-framework-reference/src/mvc.xml index 9bb6643b67..4534c43da2 100644 --- a/spring-framework-reference/src/mvc.xml +++ b/spring-framework-reference/src/mvc.xml @@ -3412,7 +3412,7 @@ background=/themes/cool/img/coolBg.jpg MultipartFile in the method parameters: @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: @Controller -public class FileUpoadController { +public class FileUploadController { @RequestMapping(value = "/form", method = RequestMethod.POST) public String handleFormUpload(@RequestParam("name") String name, -- GitLab