Replace 'via' with 'over' or 'through' in the documentation

Closes gh-33878
This commit is contained in:
Moritz Halbritter
2023-01-18 16:56:42 +01:00
parent b5cebed120
commit e8d809fe65
99 changed files with 146 additions and 135 deletions

View File

@@ -48,7 +48,7 @@ import org.springframework.test.context.junit.jupiter.SpringExtension;
* <p>
* By default, tests annotated with {@code JsonTest} will also initialize
* {@link JacksonTester}, {@link JsonbTester} and {@link GsonTester} fields. More
* fine-grained control can be provided via the
* fine-grained control can be provided through the
* {@link AutoConfigureJsonTesters @AutoConfigureJsonTesters} annotation.
* <p>
* When using JUnit 4, this annotation should be used in combination with

View File

@@ -48,8 +48,8 @@ import org.springframework.web.context.WebApplicationContext;
/**
* {@link MockMvcBuilderCustomizer} for a typical Spring Boot application. Usually applied
* automatically via {@link AutoConfigureMockMvc @AutoConfigureMockMvc}, but may also be
* used directly.
* automatically through {@link AutoConfigureMockMvc @AutoConfigureMockMvc}, but may also
* be used directly.
*
* @author Phillip Webb
* @author Andy Wilkinson

View File

@@ -17,7 +17,7 @@
package org.springframework.boot.test.autoconfigure.json.app;
/**
* Example object to read/write as JSON via {@link ExampleJsonComponent}.
* Example object to read/write as JSON through {@link ExampleJsonComponent}.
*
* @author Phillip Webb
*/

View File

@@ -30,7 +30,7 @@ import org.springframework.test.context.web.WebAppConfiguration;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link WebMvcTest @WebMvcTest} when loading resources via the
* Tests for {@link WebMvcTest @WebMvcTest} when loading resources through the
* {@link ServletContext} with {@link WebAppConfiguration @WebAppConfiguration}.
*
* @author Lorenzo Dee