Fix various typos

Fix a variety of typos throughout the project, primarily in
comments (javadoc or otherwise) but also in a handful of log messages
and a couple exception messages.

ISSUE: SPR-11123
This commit is contained in:
Eric Dahl
2013-11-23 20:43:38 -06:00
committed by Phillip Webb
parent 4e82416ba9
commit e9f78f6043
37 changed files with 55 additions and 55 deletions

View File

@@ -55,7 +55,7 @@ public interface CallableProcessingInterceptor {
* <p>
* This is useful for capturing the state of the current thread just prior to
* invoking the {@link Callable}. Once the state is captured, it can then be
* transfered to the new {@link Thread} in
* transferred to the new {@link Thread} in
* {@link #preProcess(NativeWebRequest, Callable)}. Capturing the state of
* Spring Security's SecurityContextHolder and migrating it to the new Thread
* is a concrete example of where this is useful.

View File

@@ -48,7 +48,7 @@ public class ServletContextAwareProcessor implements BeanPostProcessor {
/**
* Create a new ServletContextAwareProcessor without an initial context or config.
* When this constructor is used the {@link #getServletContext()} and/or
* {@link #getServletConfig()} methods should be overriden.
* {@link #getServletConfig()} methods should be overridden.
*/
protected ServletContextAwareProcessor() {
}

View File

@@ -41,7 +41,7 @@ import org.springframework.web.util.WebUtils;
* should be involved in async dispatches. However, in some cases servlet
* containers assume different default configuration. Therefore sub-classes can
* override the method {@link #shouldNotFilterAsyncDispatch()} to declare
* statically if they shouuld indeed be invoked, <em>once</em>, during both types
* statically if they should indeed be invoked, <em>once</em>, during both types
* of dispatches in order to provide thread initialization, logging, security,
* and so on. This mechanism complements and does not replace the need to
* configure a filter in {@code web.xml} with dispatcher types.

View File

@@ -115,7 +115,7 @@ public abstract class DecoratingNavigationHandler extends NavigationHandler {
* <p>If no decorated NavigationHandler specified as constructor argument,
* this instance is the last element in the chain. Hence, this method will
* call the original NavigationHandler as passed into this method. If no
* original NavigantionHandler has been passed in (for example if this
* original NavigationHandler has been passed in (for example if this
* instance is the last element in a chain with standard NavigationHandlers
* as earlier elements), this method corresponds to a no-op.
* @param facesContext the current JSF context

View File

@@ -25,7 +25,7 @@ import javax.servlet.ServletContextListener;
* parameter at the servlet context level (i.e. context-param in web.xml),
* the default key is "webapp.root".
*
* <p>Can be used for toolkits that support substition with system properties
* <p>Can be used for toolkits that support substitution with system properties
* (i.e. System.getProperty values), like log4j's "${key}" syntax within log
* file locations.
*