Skip to content

Commit 0d3f3e4

Browse files
dreis2211mbhave
authored andcommitted
Fix typos
Closes gh-12468
1 parent 2f1b2e3 commit 0d3f3e4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
import org.springframework.core.annotation.AnnotationAttributes;
3838

3939
/**
40-
* Factory to creates an {@link Operation} for a annotated methods on an
40+
* Factory to create an {@link Operation} for annotated methods on an
4141
* {@link Endpoint @Endpoint} or {@link EndpointExtension @EndpointExtension}.
4242
*
4343
* @param <O> The operation type

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1573,7 +1573,7 @@ be provided:
15731573
management.metrics.export.wavefront.api-token=YOUR_API_TOKEN
15741574
----
15751575

1576-
Alternatively, you may use a a Wavefront sidecar or an internal proxy set up in your
1576+
Alternatively, you may use a Wavefront sidecar or an internal proxy set up in your
15771577
environment that forwards metrics data to the Wavefront API host:
15781578

15791579
[source,properties,indent=0]

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/filter/FilterAnnotations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private TypeFilter createTypeFilter(FilterType filterType, Class<?> filterClass)
7272
switch (filterType) {
7373
case ANNOTATION:
7474
Assert.isAssignable(Annotation.class, filterClass,
75-
"An error occurred while processing a ANNOTATION type filter: ");
75+
"An error occurred while processing an ANNOTATION type filter: ");
7676
return new AnnotationTypeFilter((Class<Annotation>) filterClass);
7777
case ASSIGNABLE_TYPE:
7878
return new AssignableTypeFilter(filterClass);

spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/json-shade/java/org/springframework/boot/configurationprocessor/json/JSONStringer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ enum Scope {
7575
EMPTY_ARRAY,
7676

7777
/**
78-
* A array with at least one value requires a comma and newline before the next
78+
* An array with at least one value requires a comma and newline before the next
7979
* element.
8080
*/
8181
NONEMPTY_ARRAY,

0 commit comments

Comments
 (0)