diff --git a/org.springframework.web/src/main/java/org/springframework/web/context/request/WebRequestInterceptor.java b/org.springframework.web/src/main/java/org/springframework/web/context/request/WebRequestInterceptor.java index 366d5cff23e..d5d9910c70e 100644 --- a/org.springframework.web/src/main/java/org/springframework/web/context/request/WebRequestInterceptor.java +++ b/org.springframework.web/src/main/java/org/springframework/web/context/request/WebRequestInterceptor.java @@ -20,15 +20,15 @@ import org.springframework.ui.ModelMap; /** * Interface for general web request interception. Allows for being applied - * to Servlet request as well as Portlet request environments, through - * building on the {@link WebRequest} abstraction. + * to Servlet request as well as Portlet request environments, by building + * on the {@link WebRequest} abstraction. * *
This interface assumes MVC-style request processing: A handler gets executed, * exposes a set of model objects, then a view gets rendered based on that model. * Alternatively, a handler may also process the request completely, with no * view to be rendered. * - *
This interface is deliberatly minimalistic to keep the dependencies of + *
This interface is deliberately minimalistic to keep the dependencies of * generic request interceptors as minimal as feasible. * *
NOTE: While this interceptor is applied to the entire request processing