Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import org.springframework.core.annotation.AnnotationAttributes;

/**
* Factory to creates an {@link Operation} for a annotated methods on an
* Factory to create an {@link Operation} for annotated methods on an
* {@link Endpoint @Endpoint} or {@link EndpointExtension @EndpointExtension}.
*
* @param <O> The operation type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1573,7 +1573,7 @@ be provided:
management.metrics.export.wavefront.api-token=YOUR_API_TOKEN
----

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

[source,properties,indent=0]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private TypeFilter createTypeFilter(FilterType filterType, Class<?> filterClass)
switch (filterType) {
case ANNOTATION:
Assert.isAssignable(Annotation.class, filterClass,
"An error occurred while processing a ANNOTATION type filter: ");
"An error occurred while processing an ANNOTATION type filter: ");
return new AnnotationTypeFilter((Class<Annotation>) filterClass);
case ASSIGNABLE_TYPE:
return new AssignableTypeFilter(filterClass);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ enum Scope {
EMPTY_ARRAY,

/**
* A array with at least one value requires a comma and newline before the next
* An array with at least one value requires a comma and newline before the next
* element.
*/
NONEMPTY_ARRAY,
Expand Down