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). *