diff --git a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/Sanitizer.java b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/Sanitizer.java index c130e12719e..5d5df2fef0d 100644 --- a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/Sanitizer.java +++ b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/Sanitizer.java @@ -21,8 +21,8 @@ import java.util.regex.Pattern; import org.springframework.util.Assert; /** - * Strategy that be be used by endpoint implementations to sanitize potentially sensitive - * keys. + * Strategy that should be used by endpoint implementations to sanitize potentially + * sensitive keys. * * @author Christian Dupuis * @author Toshiaki Maki diff --git a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/annotation/EndpointExtension.java b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/annotation/EndpointExtension.java index 8d9f0c57664..9116000ac7b 100644 --- a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/annotation/EndpointExtension.java +++ b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/annotation/EndpointExtension.java @@ -30,7 +30,7 @@ import org.springframework.core.annotation.AliasFor; * Meta-annotation used to indicate that an annotation provides extension support for an * endpoint. Extensions allow additional technology specific {@link Operation operations} * to be added to an existing endpoint. For example, a web extension may offer variations - * of a read operation operation to support filtering based on a query parameter. + * of a read operation to support filtering based on a query parameter. *
* Extension annotations must provide an {@link EndpointFilter} to restrict when the
* extension applies. The {@code endpoint} attribute is usually re-declared using
diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
index ab736b7fada..68ac04bfd0e 100644
--- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
@@ -5524,7 +5524,7 @@ Spring Boot offers several conveniences for working with the Quartz scheduler, i
the `spring-boot-starter-quartz` '`Starter`'. If Quartz is available, a `Scheduler` is
auto-configured (via the `SchedulerFactoryBean` abstraction).
-Beans of the following types are automatically picked up and associated with the the
+Beans of the following types are automatically picked up and associated with the
`Scheduler`:
* `JobDetail`: defines a particular Job. `JobDetail` instances can be built with the
@@ -6683,7 +6683,7 @@ If you <