From 69b5ed4b83918fe379f010cf3d0cb8193f831edc Mon Sep 17 00:00:00 2001 From: Drew Oldag <47493171+drewoldag@users.noreply.github.com> Date: Mon, 30 Sep 2024 13:32:36 -0700 Subject: [PATCH] Apply suggestions from code review --- docs/practices/customizing_project.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/practices/customizing_project.rst b/docs/practices/customizing_project.rst index 49bde11..df3aff6 100644 --- a/docs/practices/customizing_project.rst +++ b/docs/practices/customizing_project.rst @@ -7,7 +7,7 @@ What is it? Why do it? The ``pyproject.toml`` file is used to define many different project configurations. It replaces the need for setup.py, requirements.txt, and other configuration files. -A fundamental use for ``pyproject.toml`` is to define a dependencies. You should +A fundamental use for ``pyproject.toml`` is to define dependencies. You should make an effort to add all the required dependencies to the ``[dependencies]`` section of the file.