Update docs/conf/writing.md

Co-authored-by: Patrik Oldsberg <poldsberg@gmail.com>
Signed-off-by: solimant <solimant@users.noreply.github.com>
This commit is contained in:
solimant
2024-03-12 11:19:45 -04:00
parent 99bab65ff7
commit 5496dd994b
+2 -2
View File
@@ -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