Skip to content

Commit a994b11

Browse files
izeyephilwebb
authored andcommitted
Polish
1 parent e239e64 commit a994b11

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3788,7 +3788,7 @@ providers (in this order):
37883788

37893789
* <<boot-features-caching-provider-generic,Generic>>
37903790
* <<boot-features-caching-provider-jcache,JCache (JSR-107)>> (EhCache 3, Hazelcast,
3791-
Infinspan, etc)
3791+
Infinispan, etc)
37923792
* <<boot-features-caching-provider-ehcache2,EhCache 2.x>>
37933793
* <<boot-features-caching-provider-hazelcast,Hazelcast>>
37943794
* <<boot-features-caching-provider-infinispan,Infinispan>>

spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/orm/jpa/AutoConfigureTestDatabaseWithNoDatabaseIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class AutoConfigureTestDatabaseWithNoDatabaseIntegrationTests {
4141
private ApplicationContext context;
4242

4343
@Test
44-
public void testContextLoades() throws Exception {
44+
public void testContextLoads() throws Exception {
4545
// gh-6897
4646
assertThat(this.context).isNotNull();
4747
assertThat(this.context.getBeanNamesForType(DataSource.class)).isNotEmpty();

spring-boot-test/src/test/java/org/springframework/boot/test/context/bootstrap/SpringBootTestContextBootstrapperTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ private void buildTestContext(Class<?> testClass) {
6161
BootstrapContext bootstrapContext = mock(BootstrapContext.class);
6262
bootstrapper.setBootstrapContext(bootstrapContext);
6363
given((Class) bootstrapContext.getTestClass()).willReturn(testClass);
64-
CacheAwareContextLoaderDelegate contextLoaderDeleagte = mock(
64+
CacheAwareContextLoaderDelegate contextLoaderDelegate = mock(
6565
CacheAwareContextLoaderDelegate.class);
6666
given(bootstrapContext.getCacheAwareContextLoaderDelegate())
67-
.willReturn(contextLoaderDeleagte);
67+
.willReturn(contextLoaderDelegate);
6868
bootstrapper.buildTestContext();
6969
}
7070

spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/AbstractRunMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public abstract class AbstractRunMojo extends AbstractDependencyFilterMojo {
139139
private File classesDirectory;
140140

141141
/**
142-
* Flag to indicate if the run processes should be forked. {@code fork } is
142+
* Flag to indicate if the run processes should be forked. {@code fork} is
143143
* automatically enabled if an agent or jvmArguments are specified, or if devtools is
144144
* present.
145145
* @since 1.2

0 commit comments

Comments
 (0)