Skip to content

Commit cf0fcaf

Browse files
dreis2211snicoll
authored andcommitted
Polish
See gh-27940
1 parent b8b2e56 commit cf0fcaf

File tree

41 files changed

+74
-74
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+74
-74
lines changed

buildSrc/src/main/java/org/springframework/boot/build/JavaConventions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* plugin is applied:
5858
*
5959
* <ul>
60-
* <li>The project is configered with source and target compatibility of 1.8
60+
* <li>The project is configured with source and target compatibility of 1.8
6161
* <li>{@link SpringJavaFormatPlugin Spring Java Format}, {@link CheckstylePlugin
6262
* Checkstyle}, {@link TestFailuresPlugin Test Failures}, and {@link TestRetryPlugin Test
6363
* Retry} plugins are applied

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/context/properties/ConfigurationPropertiesReportEndpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ private boolean isReadable(BeanDescription beanDesc, BeanPropertyWriter writer)
502502
AnnotatedMethod setter = findSetter(beanDesc, writer);
503503
// If there's a setter, we assume it's OK to report on the value,
504504
// similarly, if there's no setter but the package names match, we assume
505-
// that its a nested class used solely for binding to config props, so it
505+
// that it is a nested class used solely for binding to config props, so it
506506
// should be kosher. Lists and Maps are also auto-detected by default since
507507
// that's what the metadata generator does. This filter is not used if there
508508
// is JSON metadata for the property, so it's mainly for user-defined beans.

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/SanitizingFunction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
public interface SanitizingFunction {
2828

2929
/**
30-
* Apply the sanitiing function to the given data.
30+
* Apply the sanitizing function to the given data.
3131
* @param data the data to sanitize
3232
* @return the sanitized data or the original instance is no sanitization is applied
3333
*/

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/invoke/OperationInvokerAdvisor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -34,7 +34,7 @@ public interface OperationInvokerAdvisor {
3434
* @param operationType the operation type
3535
* @param parameters the operation parameters
3636
* @param invoker the invoker to advise
37-
* @return an potentially new operation invoker with support for additional features
37+
* @return a potentially new operation invoker with support for additional features
3838
*/
3939
OperationInvoker apply(EndpointId endpointId, OperationType operationType, OperationParameters parameters,
4040
OperationInvoker invoker);

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/env/EnvironmentEndpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ private void extract(String root, Map<String, PropertySource<?>> map, PropertySo
194194
}
195195

196196
/**
197-
* Apply sanitiation to the given name and value.
197+
* Apply sanitization to the given name and value.
198198
* @param key the name to sanitize
199199
* @param value the value to sanitize
200200
* @return the sanitized value

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/HealthComponent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -19,7 +19,7 @@
1919
import com.fasterxml.jackson.annotation.JsonUnwrapped;
2020

2121
/**
22-
* An component that contributes data to results returned from the {@link HealthEndpoint}.
22+
* A component that contributes data to results returned from the {@link HealthEndpoint}.
2323
*
2424
* @author Phillip Webb
2525
* @since 2.2.0

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitConnectionFactoryBeanConfigurer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void setCredentialsRefreshService(CredentialsRefreshService credentialsRe
5757

5858
/**
5959
* Configure the specified rabbit connection factory bean. The factory bean can be
60-
* further tuned and default settings can be overridden. It is the repsonsiblity of
60+
* further tuned and default settings can be overridden. It is the responsibility of
6161
* the caller to invoke {@link RabbitConnectionFactoryBean#afterPropertiesSet()}
6262
* though.
6363
* @param factory the {@link RabbitConnectionFactoryBean} instance to configure

spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/remote/server/HttpHeaderAccessManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020
import org.springframework.util.Assert;
2121

2222
/**
23-
* {@link AccessManager} that checks for the presence of a HTTP header secret.
23+
* {@link AccessManager} that checks for the presence of an HTTP header secret.
2424
*
2525
* @author Rob Winch
2626
* @author Phillip Webb

spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/remote/server/HttpStatusHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -34,7 +34,7 @@ public class HttpStatusHandler implements Handler {
3434
private final HttpStatus status;
3535

3636
/**
37-
* Create a new {@link HttpStatusHandler} instance that will respond with a HTTP OK
37+
* Create a new {@link HttpStatusHandler} instance that will respond with an HTTP OK
3838
* 200 status.
3939
*/
4040
public HttpStatusHandler() {

spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/AgentReloader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@
2323
import org.springframework.util.ClassUtils;
2424

2525
/**
26-
* Utility to determine if an Java agent based reloader (e.g. JRebel) is being used.
26+
* Utility to determine if a Java agent based reloader (e.g. JRebel) is being used.
2727
*
2828
* @author Phillip Webb
2929
* @since 1.3.0

0 commit comments

Comments
 (0)