mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Merge pull request #47747 from ngocnhan-tran1996
* pr/47747: Fix typos Closes gh-47747
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
+1
-1
@@ -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:
|
||||
|
||||
|
||||
+1
-1
@@ -296,7 +296,7 @@ abstract class AbstractApplicationContextRunnerTests<T extends AbstractApplicati
|
||||
}
|
||||
|
||||
@Test
|
||||
void getWirhAdditionalContextInterfaceHasCorrectInstanceOf() {
|
||||
void getWithAdditionalContextInterfaceHasCorrectInstanceOf() {
|
||||
getWithAdditionalContextInterface()
|
||||
.run((context) -> assertThat(context).isInstanceOf(AdditionalContextInterface.class));
|
||||
}
|
||||
|
||||
+1
-1
@@ -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/")) {
|
||||
|
||||
Reference in New Issue
Block a user