From 5496dd994bfb5bd0c011aa32094ebd9b60757dcd Mon Sep 17 00:00:00 2001 From: solimant Date: Tue, 12 Mar 2024 11:19:45 -0400 Subject: [PATCH] Update docs/conf/writing.md Co-authored-by: Patrik Oldsberg Signed-off-by: solimant --- docs/conf/writing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf/writing.md b/docs/conf/writing.md index b89a99aa09..6e827c075e 100644 --- a/docs/conf/writing.md +++ b/docs/conf/writing.md @@ -205,11 +205,11 @@ variable if it is unset, or is declared but has no value. For example: ```yaml app: - baseUrl: https://${HOST:-http://localhost:3000} + baseUrl: https://${HOST:-localhost:3000} ``` In the above example, when `HOST` is unset or has no value, it will be -substituted with `http://localhost:3000`. +substituted with `localhost:3000`. ## Combining Includes and Environment Variable Substitution