From 38fb16a79db11f91b215f85736d2d675ff80a7bf Mon Sep 17 00:00:00 2001 From: Alessandro Falappa Date: Tue, 17 Sep 2019 12:02:12 +0200 Subject: [PATCH] Fix typos in HealthContributors definition See gh-18249 --- .../src/main/asciidoc/production-ready-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index b51cc2d1b1..22b7484ff5 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -653,7 +653,7 @@ Spring Boot includes a number of auto-configured `HealthContributors` and you ca A `HealthContributor` can either be a `HealthIndicator` or a `CompositeHealthContributor`. A `HealthIndicator` provides actual health information, including a `Status`. A `CompositeHealthContributor` provides a composite of other `HealthContributors`. -Taken together, contributor for a tree structure to represent the overall system heath. +Taken together, contributors form a tree structure to represent the overall system health. By default, the final system health is derived by a `StatusAggregator` which sorts the statuses from each `HealthIndicator` based on an ordered list of statuses. The first status in the sorted list is used as the overall health status.