Remove duplicate words in documentation and polish Javadoc

This commit is contained in:
Sam Brannen
2020-03-31 11:49:15 +02:00
parent 53106d5741
commit e26764d249
94 changed files with 213 additions and 213 deletions

View File

@@ -51,7 +51,7 @@ public interface CacheAwareContextLoaderDelegate {
* implementation in Spring overrides this method appropriately.
* @param mergedContextConfiguration the merged context configuration used
* to load the application context; never {@code null}
* @return {@code true} if the the application context has been loaded
* @return {@code true} if the application context has been loaded
* @since 5.2
* @see #loadContext
* @see #closeContext

View File

@@ -249,7 +249,7 @@ public abstract class MockRestRequestMatchers {
* using formatting specifiers as defined in
* {@link String#format(String, Object...)}.
* @param expression the XPath optionally parameterized with arguments
* @param namespaces namespaces referenced in the XPath expression
* @param namespaces the namespaces referenced in the XPath expression
* @param args arguments to parameterize the XPath expression with
*/
public static XpathRequestMatchers xpath(String expression, Map<String, String> namespaces, Object... args)

View File

@@ -82,7 +82,7 @@ public class FluxExchangeResult<T> extends ExchangeResult {
* .returnResult()
* .consumeWith(result -> assertThat(...);
* </pre>
* @param consumer consumer for {@code "this"} instance
* @param consumer the consumer for {@code "this"} instance
*/
public void consumeWith(Consumer<FluxExchangeResult<T>> consumer) {
assertWithDiagnostics(() -> consumer.accept(this));

View File

@@ -963,7 +963,7 @@ public interface WebTestClient {
* <p>The XPath expression can be a parameterized string using
* formatting specifiers as defined in {@link String#format}.
* @param expression the XPath expression
* @param namespaces namespaces to use
* @param namespaces the namespaces to use
* @param args arguments to parameterize the expression
* @since 5.1
*/

View File

@@ -246,7 +246,7 @@ public abstract class MockMvcResultMatchers {
* <p>The XPath expression can be a parameterized string using formatting
* specifiers as defined in {@link String#format(String, Object...)}.
* @param expression the XPath expression, optionally parameterized with arguments
* @param namespaces namespaces referenced in the XPath expression
* @param namespaces the namespaces referenced in the XPath expression
* @param args arguments to parameterize the XPath expression with
*/
public static XpathResultMatchers xpath(String expression, Map<String, String> namespaces, Object... args)