docs: fix typo in settings management page (#3781)

This commit is contained in:
Guilhem C
2022-04-01 20:47:05 +02:00
committed by GitHub
parent d7a8272d7e
commit 90628e1c2b
+1 -1
View File
@@ -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.