From 90628e1c2b8d59fd71dd77ccdd16a5262a7ac64c Mon Sep 17 00:00:00 2001 From: Guilhem C Date: Fri, 1 Apr 2022 20:47:05 +0200 Subject: [PATCH] docs: fix typo in settings management page (#3781) --- docs/usage/settings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/settings.md b/docs/usage/settings.md index 1de49c0..3ab5821 100644 --- a/docs/usage/settings.md +++ b/docs/usage/settings.md @@ -71,7 +71,7 @@ by treating the environment variable's value as a JSON-encoded string. Another way to populate nested complex variables is to configure your model with the `env_nested_delimiter` config setting, then use an env variable with a name pointing to the nested module fields. -What it does is simply explodes yor variable into nested models or dicts. +What it does is simply explodes your variable into nested models or dicts. So if you define a variable `FOO__BAR__BAZ=123` it will convert it into `FOO={'BAR': {'BAZ': 123}}` If you have multiple variables with the same structure they will be merged.