From e55c9a1b8059bb076a418e53256626e59ef435e7 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 14 Apr 2015 14:21:56 +0200 Subject: [PATCH] Add missing dot in property description --- .../health/ElasticsearchHealthIndicatorProperties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/ElasticsearchHealthIndicatorProperties.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/ElasticsearchHealthIndicatorProperties.java index 0ba0de5a29..1f8ec6a4ca 100644 --- a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/ElasticsearchHealthIndicatorProperties.java +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/ElasticsearchHealthIndicatorProperties.java @@ -32,12 +32,12 @@ import org.springframework.boot.context.properties.ConfigurationProperties; public class ElasticsearchHealthIndicatorProperties { /** - * Comma-separated index names + * Comma-separated index names. */ private List indices = new ArrayList(); /** - * The time, in milliseconds, to wait for a response from the cluster + * The time, in milliseconds, to wait for a response from the cluster. */ private long responseTimeout = 100L;