From 475c240ad902ea2e4b5edf58becc4776c6d32f11 Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 24 Feb 2021 08:23:58 -0800 Subject: [PATCH] Fix grammatical error in documentation Closes gh-25411 --- .../src/docs/asciidoc/spring-boot-features.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc index ff9a68ee94cf..cfd45fd3f34c 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc @@ -573,9 +573,9 @@ For example, if `spring.config.location` is configured with the value `optional: . `optional:classpath:custom-config/` . `optional:file:./custom-config/` -If you prefer to add addition locations, rather than replacing them, you can use `spring.config.additional-location`. +If you prefer to add additional locations, rather than replacing them, you can use `spring.config.additional-location`. Properties loaded from additional locations can override those in the default locations. -For example, if `spring.config.additional-location` is configured with the value `optional:classpath:/custom-config/,optional:file:./custom-config/`, the complete the complete set of locations considered is: +For example, if `spring.config.additional-location` is configured with the value `optional:classpath:/custom-config/,optional:file:./custom-config/`, the complete set of locations considered is: . `optional:classpath:/` . `optional:classpath:/config/`