Add missing comma in `projects/dependencies.md` (#14613)

## Summary

Diff:

```diff
 [dependency-groups]
 dev = [
-  {include-group = "lint"}
+  {include-group = "lint"},
   {include-group = "test"}
 ]
```

## Test Plan

None.
This commit is contained in:
InSync 2025-07-15 02:06:05 +07:00 committed by GitHub
parent 77c771c7f3
commit b046e7f3be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -686,7 +686,7 @@ A dependency group can include other dependency groups, e.g.:
```toml title="pyproject.toml" ```toml title="pyproject.toml"
[dependency-groups] [dependency-groups]
dev = [ dev = [
{include-group = "lint"} {include-group = "lint"},
{include-group = "test"} {include-group = "test"}
] ]
lint = [ lint = [