Fix documentation typo

This commit is contained in:
Rossen Stoyanchev 2013-07-30 15:40:49 -04:00
parent 909577082d
commit 3482c170e0
1 changed files with 1 additions and 1 deletions

View File

@ -2418,7 +2418,7 @@ public String myHandleMethod(WebRequest webRequest, Model model) {
public Callable<String> processUpload(final MultipartFile file) {
return new Callable<String>() {
public Object call() throws Exception {
public String call() throws Exception {
// ...
return "someView";
}