diff --git a/core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationReplacements.java b/core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationReplacements.java index 043ccb0fee9..3d94b06d844 100644 --- a/core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationReplacements.java +++ b/core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationReplacements.java @@ -81,7 +81,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 diff --git a/core/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunnerTests.java b/core/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunnerTests.java index e52879358d8..43fcdf7f74b 100644 --- a/core/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunnerTests.java +++ b/core/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunnerTests.java @@ -296,7 +296,7 @@ abstract class AbstractApplicationContextRunnerTests assertThat(context).isInstanceOf(AdditionalContextInterface.class)); } diff --git a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc index 1d76e592d3c..92e3458ff7e 100644 --- a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc +++ b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc @@ -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: diff --git a/loader/spring-boot-loader/src/test/java/org/springframework/boot/loader/zip/VirtualZipPerformanceTests.java b/loader/spring-boot-loader/src/test/java/org/springframework/boot/loader/zip/VirtualZipPerformanceTests.java index 1aef91c4cbc..bd7616e8fa0 100644 --- a/loader/spring-boot-loader/src/test/java/org/springframework/boot/loader/zip/VirtualZipPerformanceTests.java +++ b/loader/spring-boot-loader/src/test/java/org/springframework/boot/loader/zip/VirtualZipPerformanceTests.java @@ -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/")) {