From 3482c170e04546bc44f525f6301a8a1c11b9b014 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Tue, 30 Jul 2013 15:40:49 -0400 Subject: [PATCH] Fix documentation typo --- src/reference/docbook/mvc.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reference/docbook/mvc.xml b/src/reference/docbook/mvc.xml index 6a2415de90..df1a44c27b 100644 --- a/src/reference/docbook/mvc.xml +++ b/src/reference/docbook/mvc.xml @@ -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"; }