From 409393527541df26f0bad54616d647fc54ace180 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 2 Dec 2009 09:34:12 +0000 Subject: [PATCH] JavaDoc polishing --- .../web/context/request/WebRequestInterceptor.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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