Merge pull request #47747 from ngocnhan-tran1996

* pr/47747:
  Fix typos

Closes gh-47747
This commit is contained in:
Phillip Webb
2025-10-21 11:28:25 -07:00
4 changed files with 4 additions and 4 deletions
@@ -79,7 +79,7 @@ final class AutoConfigurationReplacements {
}
/**
* Loads the relocations from the classpath. Relactions are stored in files named
* Loads the relocations from the classpath. Relocations are stored in files named
* {@code META-INF/spring/full-qualified-annotation-name.replacements} on the
* classpath. The file is loaded using {@link Properties#load(java.io.InputStream)}
* with each entry containing an auto-configuration class name as the key and the
@@ -66,7 +66,7 @@ include-code::MyTestConfiguration[]
== Lifecycle of Managed Containers
If you have used the annotations and extensions provided by Testcontainers, then the lifecycle of container instances is managed entirely by Testcontainers.
Please refer to the {url-testcontainers-docs}[offical Testcontainers documentation] for the information.
Please refer to the {url-testcontainers-docs}[official Testcontainers documentation] for the information.
When the containers are managed by Spring as beans, then their lifecycle is managed by Spring:
@@ -296,7 +296,7 @@ abstract class AbstractApplicationContextRunnerTests<T extends AbstractApplicati
}
@Test
void getWirhAdditionalContextInterfaceHasCorrectInstanceOf() {
void getWithAdditionalContextInterfaceHasCorrectInstanceOf() {
getWithAdditionalContextInterface()
.run((context) -> assertThat(context).isInstanceOf(AdditionalContextInterface.class));
}
@@ -43,7 +43,7 @@ class VirtualZipPerformanceTests {
Path temp;
@Test
void sequentialReadPerformace() throws IOException {
void sequentialReadPerformance() throws IOException {
File file = createZipWithLargeEntries();
long start = System.nanoTime();
try (ZipContent zipContent = ZipContent.open(file.toPath(), "test/")) {