From 4303e818ebb013d45d35e2b9dfbd38ffe7947757 Mon Sep 17 00:00:00 2001 From: Bartosz Miller Date: Fri, 9 Nov 2018 22:58:02 +0100 Subject: [PATCH] Fix error in documentation (#1183) Possible grammar error. --- docs/src/main/asciidoc/spring-cloud-config.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/spring-cloud-config.adoc b/docs/src/main/asciidoc/spring-cloud-config.adoc index bc5c6bb3..e7c90164 100644 --- a/docs/src/main/asciidoc/spring-cloud-config.adoc +++ b/docs/src/main/asciidoc/spring-cloud-config.adoc @@ -1118,7 +1118,7 @@ So, the preceding example for the `default` profile could be `/foo/default/nginx The Config Server runs best as a standalone application. However, if need be, you can embed it in another application. To do so, use the `@EnableConfigServer` annotation. -An optional property named `spring.cloud.config.server.bootstrap` can be useful in this case is. +An optional property named `spring.cloud.config.server.bootstrap` can be useful in this case. It is a flag to indicate whether the server should configure itself from its own remote repository. By default, the flag is off, because it can delay startup. However, when embedded in another application, it makes sense to initialize the same way as any other application.