Skip to content

Commit aa50cc7

Browse files
committed
fix(docs): corrected some things about the inheritance of profiles
1 parent 89e8c33 commit aa50cc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/02_get_started/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ variables = { NAME = "Production" }
5959

6060
### Inheriting Profiles
6161

62-
Profiles can also inherit settings from each other to reduce duplication. The `merge` keyword allows you to combine settings from multiple profiles.
62+
Profiles can also inherit settings from each other to reduce duplication. The `inherits` keyword allows you to combine settings from multiple profiles.
6363

6464
```toml
6565
[profiles.shared]
6666
output-dir = "output/shared"
6767

6868
[profiles.dev]
69-
inherit = ["shared"]
69+
inherits = ["shared"]
7070
variables = { NAME = "Dev" }
7171
```
7272

0 commit comments

Comments
 (0)