Browse Source

Corrected typos and polishing.

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1242 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Sam Brannen 17 years ago
parent
commit
500249c449
  1. 6
      org.springframework.test/src/main/java/org/springframework/mock/jndi/package.html
  2. 2
      org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterChain.java
  3. 2
      org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterConfig.java
  4. 2
      org.springframework.test/src/main/java/org/springframework/mock/web/PassThroughFilterChain.java

6
org.springframework.test/src/main/java/org/springframework/mock/jndi/package.html

@ -4,9 +4,9 @@ @@ -4,9 +4,9 @@
The simplest implementation of the JNDI SPI that could possibly work.
<p>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.
</body>
</html>

2
org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterChain.java

@ -25,7 +25,7 @@ import org.springframework.util.Assert; @@ -25,7 +25,7 @@ import org.springframework.util.Assert;
/**
* Mock implementation of the {@link javax.servlet.FilterConfig} interface.
*
* <p>Used for testing the web framework; also usefol for testing
* <p>Used for testing the web framework; also useful for testing
* custom {@link javax.servlet.Filter} implementations.
*
* @author Juergen Hoeller

2
org.springframework.test/src/main/java/org/springframework/mock/web/MockFilterConfig.java

@ -28,7 +28,7 @@ import org.springframework.util.Assert; @@ -28,7 +28,7 @@ import org.springframework.util.Assert;
/**
* Mock implementation of the {@link javax.servlet.FilterConfig} interface.
*
* <p>Used for testing the web framework; also usefol for testing
* <p>Used for testing the web framework; also useful for testing
* custom {@link javax.servlet.Filter} implementations.
*
* @author Juergen Hoeller

2
org.springframework.test/src/main/java/org/springframework/mock/web/PassThroughFilterChain.java

@ -28,7 +28,7 @@ import org.springframework.util.Assert; @@ -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).
*

Loading…
Cancel
Save