Skip to content

Commit 1cf2073

Browse files
authored
docs: fix link with relative (#85)
1 parent 39383a3 commit 1cf2073

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ print(Settings().model_dump())
7272
1. The environment variable name is overridden using `validation_alias`. In this case, the environment variable
7373
`my_auth_key` will be read instead of `auth_key`.
7474

75-
Check the [`Field` documentation](/usage/fields/) for more information.
75+
Check the [`Field` documentation](../fields/) for more information.
7676

7777
2. The `AliasChoices` class allows to have multiple environment variable names for a single field.
7878
The first environment variable that is found will be used.
7979

80-
Check the [`AliasChoices`](/usage/fields/#aliaspath-and-aliaschoices) for more information.
80+
Check the [`AliasChoices`](../fields/#aliaspath-and-aliaschoices) for more information.
8181

8282
3. The `ImportString` class allows to import an object from a string.
8383
In this case, the environment variable `special_function` will be read and the function `math.cos` will be imported.
@@ -113,7 +113,7 @@ There are two ways to do this:
113113
* Using `Field(alias=...)` (see `api_key` above)
114114
* Using `Field(validation_alias=...)` (see `auth_key` above)
115115

116-
Check the [`Field` aliases documentation](/usage/fields#field-aliases) for more information about aliases.
116+
Check the [`Field` aliases documentation](../fields#field-aliases) for more information about aliases.
117117

118118
### Case-sensitivity
119119

0 commit comments

Comments
 (0)