diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationReplacements.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationReplacements.java index 661811676f8..ff465b5b726 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationReplacements.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationReplacements.java @@ -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 diff --git a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc index 7e5684c9683..ba2915509c9 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc +++ b/spring-boot-project/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/spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunnerTests.java b/spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunnerTests.java index e52879358d8..43fcdf7f74b 100644 --- a/spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunnerTests.java +++ b/spring-boot-project/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/spring-boot-project/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/zip/VirtualZipPerformanceTests.java b/spring-boot-project/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/zip/VirtualZipPerformanceTests.java index 1aef91c4cbc..bd7616e8fa0 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/zip/VirtualZipPerformanceTests.java +++ b/spring-boot-project/spring-boot-tools/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/")) {