From 500249c4493f40ef285e1bf752ded579b1e2d847 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 24 May 2009 16:30:13 +0000 Subject: [PATCH] Corrected typos and polishing. git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1242 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../main/java/org/springframework/mock/jndi/package.html | 6 +++--- .../java/org/springframework/mock/web/MockFilterChain.java | 2 +- .../java/org/springframework/mock/web/MockFilterConfig.java | 2 +- .../springframework/mock/web/PassThroughFilterChain.java | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/org.springframework.test/src/main/java/org/springframework/mock/jndi/package.html b/org.springframework.test/src/main/java/org/springframework/mock/jndi/package.html index 141ee8db0fa..cec6e85b24c 100644 --- a/org.springframework.test/src/main/java/org/springframework/mock/jndi/package.html +++ b/org.springframework.test/src/main/java/org/springframework/mock/jndi/package.html @@ -4,9 +4,9 @@ The simplest implementation of the JNDI SPI that could possibly work.

Useful for setting up a simple JNDI environment for test suites -or standalone applications. If e.g. JDBC DataSources get bound to the -same JNDI names as within a J2EE container, both application code and -configuration can me reused without changes. +or stand-alone applications. If, for example, JDBC DataSources get bound to the +same JNDI names as within a Java EE container, both application code and +configuration can be reused without changes. diff --git a/org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterChain.java b/org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterChain.java index 3f74cac8b54..24a9d801fa7 100644 --- a/org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterChain.java +++ b/org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterChain.java @@ -25,7 +25,7 @@ import org.springframework.util.Assert; /** * Mock implementation of the {@link javax.servlet.FilterConfig} interface. * - *

Used for testing the web framework; also usefol for testing + *

Used for testing the web framework; also useful for testing * custom {@link javax.servlet.Filter} implementations. * * @author Juergen Hoeller diff --git a/org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterConfig.java b/org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterConfig.java index f6d051935b7..34cafd55fc1 100644 --- a/org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterConfig.java +++ b/org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterConfig.java @@ -28,7 +28,7 @@ import org.springframework.util.Assert; /** * Mock implementation of the {@link javax.servlet.FilterConfig} interface. * - *

Used for testing the web framework; also usefol for testing + *

Used for testing the web framework; also useful for testing * custom {@link javax.servlet.Filter} implementations. * * @author Juergen Hoeller diff --git a/org.springframework.test/src/main/java/org/springframework/mock/web/PassThroughFilterChain.java b/org.springframework.test/src/main/java/org/springframework/mock/web/PassThroughFilterChain.java index 3b22b1f966a..b3484a0a83a 100644 --- a/org.springframework.test/src/main/java/org/springframework/mock/web/PassThroughFilterChain.java +++ b/org.springframework.test/src/main/java/org/springframework/mock/web/PassThroughFilterChain.java @@ -28,7 +28,7 @@ import org.springframework.util.Assert; /** * Implementation of the {@link javax.servlet.FilterConfig} interface which - * simply passes the call through to a given Filter/FilterChain combo + * simply passes the call through to a given Filter/FilterChain combination * (indicating the next Filter in the chain along with the FilterChain that it is * supposed to work on) or to a given Servlet (indicating the end of the chain). *