Skip to content

Commit bd27d14

Browse files
izeyewilkinsona
authored andcommitted
Polish
Closes gh-9827
1 parent 18cfd9d commit bd27d14

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

SUPPORT.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
= Getting support for Spring Boot
22

33
== GitHub issues
4-
We choose not use GitHub issues for general usage questions and support, prefering to
4+
We choose not use GitHub issues for general usage questions and support, preferring to
55
use issues solely for the tracking of bugs and enhancements. If you have a general
66
usage question please do not open a GitHub issue, but use one of the other channels
77
described below.
@@ -24,4 +24,4 @@ https://gitter.im/spring-projects/spring-boot[#spring-boot room on Gitter].
2424

2525
== Pivotal Open Source Software Support
2626
If you are interested in more dedicated support, Pivotal provides
27-
https://pivotal.io/support/oss[premium support] for Spring Boot.
27+
https://pivotal.io/support/oss[premium support] for Spring Boot.

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/**
3232
* {@link Configurations} representing auto-configuration {@code @Configuration} classes.
3333
*
34-
* @author Philip Webb
34+
* @author Phillip Webb
3535
* @since 2.0.0
3636
*/
3737
public class AutoConfigurations extends Configurations implements Ordered {

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/KafkaProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ public enum Type {
670670
SINGLE,
671671

672672
/**
673-
* Invokes the endpoint with a batch of ConsumerRecord.
673+
* Invokes the endpoint with a batch of ConsumerRecords.
674674
*/
675675
BATCH;
676676

spring-boot-test/src/main/java/org/springframework/boot/test/context/AbstractApplicationContextTester.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
* <pre class="code">
5656
* &#064;Test
5757
* public someTest() {
58-
* this.contex.withPropertyValues("spring.foo=biz").run((loaded) -&gt; {
58+
* this.context.withPropertyValues("spring.foo=biz").run((loaded) -&gt; {
5959
* assertThat(loaded).containsSingleBean(MyBean.class);
6060
* // other assertions
6161
* });
@@ -73,8 +73,8 @@
7373
* further checks are required on the cause of the failure: <pre class="code">
7474
* &#064;Test
7575
* public someTest() {
76-
* this.contex.withPropertyValues("spring.foo=fails").run((loaded) -&gt; {
77-
* assertThat(loaded).getFailure().hasCauseInstanceOf(BadPropertyExcepton.class);
76+
* this.context.withPropertyValues("spring.foo=fails").run((loaded) -&gt; {
77+
* assertThat(loaded).getFailure().hasCauseInstanceOf(BadPropertyException.class);
7878
* // other assertions
7979
* });
8080
* }</pre>

spring-boot-test/src/test/java/org/springframework/boot/test/context/AssertProviderApplicationContextTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void setup() {
6464
}
6565

6666
@Test
67-
public void getWhenTypeIsNullShouldThrowExecption() throws Exception {
67+
public void getWhenTypeIsNullShouldThrowException() throws Exception {
6868
this.thrown.expect(IllegalArgumentException.class);
6969
this.thrown.expectMessage("Type must not be null");
7070
AssertProviderApplicationContext.get(null, ApplicationContext.class,

spring-boot/src/main/java/org/springframework/boot/context/annotation/Configurations.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ protected Configurations merge(Configurations other) {
9898
protected abstract Configurations merge(Set<Class<?>> mergedClasses);
9999

100100
/**
101-
* Return the classes from all the specified configurations in the oder that they
101+
* Return the classes from all the specified configurations in the order that they
102102
* would be registered.
103103
* @param configurations the source configuration
104104
* @return configuration classes in registration order
@@ -108,7 +108,7 @@ public static Class<?>[] getClasses(Configurations... configurations) {
108108
}
109109

110110
/**
111-
* Return the classes from all the specified configurations in the oder that they
111+
* Return the classes from all the specified configurations in the order that they
112112
* would be registered.
113113
* @param configurations the source configuration
114114
* @return configuration classes in registration order

0 commit comments

Comments
 (0)