From 55bd99fa161624ec7bf69ab51d7a9e3a5f657a64 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Thu, 12 Jul 2012 18:27:38 -0400 Subject: [PATCH] Fix typos in Spring MVC chapter of reference docs --- src/reference/docbook/mvc.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reference/docbook/mvc.xml b/src/reference/docbook/mvc.xml index ff0299fb31..7c482a7ba9 100644 --- a/src/reference/docbook/mvc.xml +++ b/src/reference/docbook/mvc.xml @@ -3666,7 +3666,7 @@ public class SimpleController { } The @ExceptionHandler value can be set to - an array of Exception types. If an exception is thrown matches one of + an array of Exception types. If an exception is thrown that matches one of the types in the list, then the method annotated with the matching @ExceptionHandler will be invoked. If the annotation value is not set then the exception types listed as method @@ -3687,7 +3687,7 @@ public class SimpleController { To better understand how @ExceptionHandler methods work, consider that in Spring MVC there is only one abstraction - for handling exception and that's the + for handling exceptions and that's the HandlerExceptionResolver. There is a special implementation of that interface, the ExceptionHandlerExceptionResolver, which detects -- GitLab