diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-11-01 11:52:54 -0700 |
---|---|---|
committer | Paul Ganssle <pganssle@users.noreply.github.com> | 2018-11-01 14:52:54 -0400 |
commit | af4f0bae84750a299d8396e7da27f8d5220d19b2 (patch) | |
tree | 687b822ac3be08a4954a346408ef745056008133 | |
parent | f0cd0ad9f29da6c6991ba0e02fc41b7e46459fb1 (diff) | |
download | external_python_setuptools-af4f0bae84750a299d8396e7da27f8d5220d19b2.tar.gz external_python_setuptools-af4f0bae84750a299d8396e7da27f8d5220d19b2.tar.bz2 external_python_setuptools-af4f0bae84750a299d8396e7da27f8d5220d19b2.zip |
Add missing word to sentence in docs (#1552)
Add missing word to sentence in python 3 docs
-rw-r--r-- | changelog.d/1552.doc.rst | 1 | ||||
-rw-r--r-- | docs/python3.txt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/1552.doc.rst b/changelog.d/1552.doc.rst new file mode 100644 index 00000000..43e0e62d --- /dev/null +++ b/changelog.d/1552.doc.rst @@ -0,0 +1 @@ +Fixed a minor typo in the python 2/3 compatibility documentation. diff --git a/docs/python3.txt b/docs/python3.txt index c528fc3c..6b55fe78 100644 --- a/docs/python3.txt +++ b/docs/python3.txt @@ -9,7 +9,7 @@ code. Setuptools provides a facility to invoke 2to3 on the code as a part of the build process, by setting the keyword parameter ``use_2to3`` to True, but -the Setuptools strongly recommends instead developing a unified codebase +the Setuptools project strongly recommends instead developing a unified codebase using `six <https://pypi.org/project/six/>`_, `future <https://pypi.org/project/future/>`_, or another compatibility library. |