Fix typos in Javadoc

This commit is contained in:
Sam Brannen 2012-10-31 16:22:16 +01:00
parent 3416e058a0
commit 8bb19f05ea
2 changed files with 2 additions and 2 deletions

View File

@ -534,7 +534,7 @@ public class BeanDefinitionParserDelegate {
/**
* Parse the bean definition itself, without regard to name or aliases. May return
* <code>null</code> if problems occured during the parse of the bean definition.
* <code>null</code> if problems occurred during the parsing of the bean definition.
*/
public AbstractBeanDefinition parseBeanDefinitionElement(
Element ele, String beanName, BeanDefinition containingBean) {

View File

@ -30,7 +30,7 @@ import org.springframework.web.servlet.resource.DefaultServletHttpRequestHandler
/**
* Configures a request handler for serving static resources by forwarding the request to the Servlet container's
* "default" Servlet. This is indended to be used when the Spring MVC {@link DispatcherServlet} is mapped to "/"
* "default" Servlet. This is intended to be used when the Spring MVC {@link DispatcherServlet} is mapped to "/"
* thus overriding the Servlet container's default handling of static resources. Since this handler is configured
* at the lowest precedence, effectively it allows all other handler mappings to handle the request, and if none
* of them do, this handler can forward it to the "default" Servlet.