Fix Javadoc in MockHttpServletRequestBuilder

Class-level Javadoc for MockHttpServletRequestBuilder now correctly
refers to MockMvcRequestBuilders instead of MockMvcBuilders.

Issue: SPR-12393
This commit is contained in:
Sam Brannen 2014-10-30 00:07:01 +01:00
parent 62620de3f1
commit fc7e60678c
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ import org.springframework.web.util.UriUtils;
* requests in {@link MockMvc}.
*
* <p>Application tests will typically access this builder through the static factory
* methods in {@link org.springframework.test.web.servlet.setup.MockMvcBuilders}.
* methods in {@link MockMvcRequestBuilders}.
*
* @author Rossen Stoyanchev
* @author Arjen Poutsma