diff --git a/docs/docs/pyproject.md b/docs/docs/pyproject.md index b6bcbe318f1..7c2ffd2152e 100644 --- a/docs/docs/pyproject.md +++ b/docs/docs/pyproject.md @@ -127,11 +127,11 @@ it by using `format`: # ... packages = [ { include = "my_package" }, - { include = "tests", format = "sdist" }, + { include = "my_other_package", format = "sdist" }, ] ``` -From now on, only the `sdist` build archive will include the `tests` package. +From now on, only the `sdist` build archive will include the `my_other_package` package. !!!note