Corrected typos and polishing.

This commit is contained in:
Sam Brannen
2009-05-24 16:30:13 +00:00
parent f4bc0ab061
commit be7bbcd228
4 changed files with 6 additions and 6 deletions

View File

@@ -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>

View File

@@ -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

View File

@@ -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

View File

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