Skip to content

Commit 674f1e7

Browse files
dreis2211snicoll
authored andcommitted
Fix typos
See gh-20704
1 parent 7a64b3f commit 674f1e7

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/solr/SolrHealthIndicator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected void doHealthCheck(Health.Builder builder) throws Exception {
5959
private int initializeStatusCheck() throws Exception {
6060
StatusCheck statusCheck = this.statusCheck;
6161
if (statusCheck != null) {
62-
// Already initilized
62+
// Already initialized
6363
return statusCheck.getStatus(this.solrClient);
6464
}
6565
try {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ Set<String> getNamesOfAllMatches() {
733733
}
734734

735735
/**
736-
* Exteption thrown when the bean type cannot be deduced.
736+
* Exception thrown when the bean type cannot be deduced.
737737
*/
738738
static final class BeanTypeDeductionException extends RuntimeException {
739739

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1413,7 +1413,7 @@ These are:
14131413

14141414
The default unit is bytes and can be overridden using `@DataSizeUnit` as illustrated in the sample above.
14151415

1416-
TIP: If you are upgrading from a previous version that is simply using `Long` to express the size, make sure to define the unit (using `@DataSizeUnit`) if it isn't bytes alongsidethe switch to `DataSize`.
1416+
TIP: If you are upgrading from a previous version that is simply using `Long` to express the size, make sure to define the unit (using `@DataSizeUnit`) if it isn't bytes alongside the switch to `DataSize`.
14171417
Doing so gives a transparent upgrade path while supporting a much richer format.
14181418

14191419

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ public SELF withAllowBeanDefinitionOverriding(boolean allowBeanDefinitionOverrid
179179
}
180180

181181
/**
182-
* Add a {@link ApplicationContextInitializer} to be
183-
* calWebMvcEndpointChildContextConfigurationTestsled when the context is created.
182+
* Add an {@link ApplicationContextInitializer} to be called when the context is
183+
* created.
184184
* @param initializer the initializer to add
185185
* @return a new instance with the updated initializers
186186
*/

spring-boot-project/spring-boot-tools/spring-boot-jarmode-layertools/src/main/java/org/springframework/boot/jarmode/layertools/Command.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ final void run(Deque<String> args) {
110110
/**
111111
* Run the actual command.
112112
* @param options any options extracted from the arguments
113-
* @param parameters any parameters extracted from the arguements
113+
* @param parameters any parameters extracted from the arguments
114114
*/
115115
protected abstract void run(Map<Option, String> options, List<String> parameters);
116116

spring-boot-project/spring-boot-tools/spring-boot-loader-tools/src/main/java/org/springframework/boot/loader/tools/InputStreamSupplier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
interface InputStreamSupplier {
3131

3232
/**
33-
* Returns a new open {@link InputStream} at the begining of the content.
33+
* Returns a new open {@link InputStream} at the beginning of the content.
3434
* @return a new {@link InputStream}
3535
* @throws IOException on IO error
3636
*/

0 commit comments

Comments
 (0)