Skip to content

Commit 4e4d3da

Browse files
committed
Merge pull request #47747 from ngocnhan-tran1996
* pr/47747: Fix typos Closes gh-47747
2 parents f3465fe + 4bebd47 commit 4e4d3da

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationReplacements.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public int hashCode() {
7979
}
8080

8181
/**
82-
* Loads the relocations from the classpath. Relactions are stored in files named
82+
* Loads the relocations from the classpath. Relocations are stored in files named
8383
* {@code META-INF/spring/full-qualified-annotation-name.replacements} on the
8484
* classpath. The file is loaded using {@link Properties#load(java.io.InputStream)}
8585
* with each entry containing an auto-configuration class name as the key and the

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ include-code::MyTestConfiguration[]
6666
== Lifecycle of Managed Containers
6767

6868
If you have used the annotations and extensions provided by Testcontainers, then the lifecycle of container instances is managed entirely by Testcontainers.
69-
Please refer to the {url-testcontainers-docs}[offical Testcontainers documentation] for the information.
69+
Please refer to the {url-testcontainers-docs}[official Testcontainers documentation] for the information.
7070

7171
When the containers are managed by Spring as beans, then their lifecycle is managed by Spring:
7272

spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunnerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ void prepareDoesNotRefreshContext() {
296296
}
297297

298298
@Test
299-
void getWirhAdditionalContextInterfaceHasCorrectInstanceOf() {
299+
void getWithAdditionalContextInterfaceHasCorrectInstanceOf() {
300300
getWithAdditionalContextInterface()
301301
.run((context) -> assertThat(context).isInstanceOf(AdditionalContextInterface.class));
302302
}

spring-boot-project/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/zip/VirtualZipPerformanceTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class VirtualZipPerformanceTests {
4343
Path temp;
4444

4545
@Test
46-
void sequentialReadPerformace() throws IOException {
46+
void sequentialReadPerformance() throws IOException {
4747
File file = createZipWithLargeEntries();
4848
long start = System.nanoTime();
4949
try (ZipContent zipContent = ZipContent.open(file.toPath(), "test/")) {

0 commit comments

Comments
 (0)