Skip to content

Commit 23da409

Browse files
dreis2211snicoll
authored andcommitted
Remove duplicate words
Closes gh-11073
1 parent c4070e0 commit 23da409

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
import org.springframework.util.Assert;
2222

2323
/**
24-
* Strategy that be be used by endpoint implementations to sanitize potentially sensitive
25-
* keys.
24+
* Strategy that should be used by endpoint implementations to sanitize potentially
25+
* sensitive keys.
2626
*
2727
* @author Christian Dupuis
2828
* @author Toshiaki Maki

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* Meta-annotation used to indicate that an annotation provides extension support for an
3131
* endpoint. Extensions allow additional technology specific {@link Operation operations}
3232
* to be added to an existing endpoint. For example, a web extension may offer variations
33-
* of a read operation operation to support filtering based on a query parameter.
33+
* of a read operation to support filtering based on a query parameter.
3434
* <p>
3535
* Extension annotations must provide an {@link EndpointFilter} to restrict when the
3636
* extension applies. The {@code endpoint} attribute is usually re-declared using

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5524,7 +5524,7 @@ Spring Boot offers several conveniences for working with the Quartz scheduler, i
55245524
the `spring-boot-starter-quartz` '`Starter`'. If Quartz is available, a `Scheduler` is
55255525
auto-configured (via the `SchedulerFactoryBean` abstraction).
55265526

5527-
Beans of the following types are automatically picked up and associated with the the
5527+
Beans of the following types are automatically picked up and associated with the
55285528
`Scheduler`:
55295529

55305530
* `JobDetail`: defines a particular Job. `JobDetail` instances can be built with the
@@ -6683,7 +6683,7 @@ If you <<using-boot-structuring-your-code, structure your code>> in a sensible w
66836683
the configuration of your tests.
66846684

66856685
It then becomes important not to litter the application's main class with configuration
6686-
settings that are are specific to a particular area of its functionality.
6686+
settings that are specific to a particular area of its functionality.
66876687

66886688
Assume that you are using Spring Batch and you rely on the auto-configuration for it.
66896689
Your could define your `@SpringBootApplication` as follows:

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/server/AbstractConfigurableWebServerFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public AbstractConfigurableWebServerFactory(int port) {
7272
}
7373

7474
/**
75-
* The port that the web server server listens on.
75+
* The port that the web server listens on.
7676
* @return the port
7777
*/
7878
public int getPort() {

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/context/ServletWebServerInitializedEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public ServletWebServerInitializedEvent(WebServer source,
4545
/**
4646
* Access the application context that the server was created in. Sometimes it is
4747
* prudent to check that this matches expectations (like being equal to the current
48-
* context) before acting on the server server itself.
48+
* context) before acting on the server itself.
4949
* @return the applicationContext that the server was created from
5050
*/
5151
@Override

0 commit comments

Comments
 (0)