Skip to content

Commit 4f794c7

Browse files
authored
Fix broken links (#160)
1 parent 0226fe2 commit 4f794c7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,17 @@ print(Settings().model_dump())
8585
1. The environment variable name is overridden using `validation_alias`. In this case, the environment variable
8686
`my_auth_key` will be read instead of `auth_key`.
8787

88-
Check the [`Field` documentation](../fields/) for more information.
88+
Check the [`Field` documentation](fields.md) for more information.
8989

9090
2. The environment variable name is overridden using `alias`. In this case, the environment variable
9191
`my_api_key` will be used for both validation and serialization instead of `api_key`.
9292

93-
Check the [`Field` documentation](../fields/#field-aliases) for more information.
93+
Check the [`Field` documentation](fields.md#field-aliases) for more information.
9494

9595
3. The `AliasChoices` class allows to have multiple environment variable names for a single field.
9696
The first environment variable that is found will be used.
9797

98-
Check the [`AliasChoices`](../fields/#aliaspath-and-aliaschoices) for more information.
98+
Check the [`AliasChoices`](fields.md#aliaspath-and-aliaschoices) for more information.
9999

100100
4. The `ImportString` class allows to import an object from a string.
101101
In this case, the environment variable `special_function` will be read and the function `math.cos` will be imported.
@@ -131,7 +131,7 @@ There are two ways to do this:
131131
* Using `Field(alias=...)` (see `api_key` above)
132132
* Using `Field(validation_alias=...)` (see `auth_key` above)
133133

134-
Check the [`Field` aliases documentation](../fields#field-aliases) for more information about aliases.
134+
Check the [`Field` aliases documentation](fields.md#field-aliases) for more information about aliases.
135135

136136
`env_prefix` does not apply to fields with alias. It means the environment variable name is the same
137137
as field alis:

0 commit comments

Comments
 (0)