Fix inclusion or exclusion of dependencies

This commit is contained in:
Zanie Blue 2024-10-25 13:20:14 -05:00
parent 3014d28229
commit 4df9ab2b58
1 changed files with 2 additions and 2 deletions

View File

@ -414,7 +414,7 @@ dev = [
```
The `dev` group is special-cased; there are `--dev`, `--only-dev`, and `--no-dev` flags to toggle
inclusion or exclusion of the dependencies. Additionally, the `dev` group is
inclusion or exclusion of its dependencies. Additionally, the `dev` group is
[synced by default](#default-groups).
### Dependency groups
@ -440,7 +440,7 @@ lint = [
```
Once groups are defined, the `--group`, `--only-group`, and `--no-group` options can be used to
include their dependencies.
include or exclude their dependencies.
!!! tip