From 25f48cb289e9f47f2e0d98fd84107bfe33adce08 Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Mon, 23 Mar 2020 21:55:52 +0100 Subject: [PATCH] Fix typos in HealthEndpointGroupConfigurer See gh-20628 --- .../actuate/health/HealthEndpointGroupConfigurer.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/HealthEndpointGroupConfigurer.java b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/HealthEndpointGroupConfigurer.java index b4e707fe0a..3c150d8014 100644 --- a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/HealthEndpointGroupConfigurer.java +++ b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/HealthEndpointGroupConfigurer.java @@ -43,7 +43,7 @@ public interface HealthEndpointGroupConfigurer { /** * Configure the {@link StatusAggregator} to use for this group. *

- * If none set, this will default to the globalmy configured {@link StatusAggregator}. + * If none set, this will default to the globally configured {@link StatusAggregator}. * @param statusAggregator the status aggregator * @return the configurer instance */ @@ -52,7 +52,7 @@ public interface HealthEndpointGroupConfigurer { /** * Configure the {@link HttpCodeStatusMapper} to use for this group. *

- * If none set, this will default to the globalmy configured + * If none set, this will default to the globally configured * {@link HttpCodeStatusMapper}. * @param httpCodeStatusMapper the status code mapper * @return the configurer instance @@ -60,14 +60,14 @@ public interface HealthEndpointGroupConfigurer { HealthEndpointGroupConfigurer httpCodeStatusMapper(HttpCodeStatusMapper httpCodeStatusMapper); /** - * Configure the {@link Show visbility option} for showing components of this group. + * Configure the {@link Show visibility option} for showing components of this group. * @param showComponents the components visibility * @return the configurer instance */ HealthEndpointGroupConfigurer showComponents(Show showComponents); /** - * Configure the {@link Show visbility option} for showing details of this group. + * Configure the {@link Show visibility option} for showing details of this group. * @param showDetails the details visibility * @return the configurer instance */