Skip to content

Commit cf82e08

Browse files
committed
Avoid breaking up the sentence with an example
1 parent c45ca61 commit cf82e08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/guides/poetry.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Declaring your project metadata
55
-------------------------------
66

77
Poetry is a :pep:`517`-compliant build backend, which means that
8-
`it generates your project
8+
`it can generate your project
99
metadata <https://python-poetry.org/docs/pyproject/#poetry-and-pep-517>`_
1010
using a standardized interface that can be consumed directly by pip.
11-
Therefore, by making sure that
11+
To do that, first make sure that
1212
the ``build-system`` section of your ``pyproject.toml``
1313
declares the build backend as follows:
1414

@@ -19,7 +19,7 @@ declares the build backend as follows:
1919
requires = ["poetry_core>=1.0.0"]
2020
build-backend = "poetry.core.masonry.api"
2121
22-
You will be able to install it on Read the Docs just using pip,
22+
Then, you will be able to install it on Read the Docs just using pip,
2323
with a configuration like this:
2424

2525
.. code-block:: yaml

0 commit comments

Comments
 (0)