diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-03-11 18:59:37 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-03-11 18:59:37 (GMT) |
commit | bfca3ca114c1ca6fc824c103a7a5048986333a42 (patch) | |
tree | 2a8f78cb1e257cbe6b6477c3152ffa49fddf716a /Doc/howto | |
parent | 18a364fc3de8dc55ba081c322d37637cf9ac5867 (diff) | |
download | cpython-bfca3ca114c1ca6fc824c103a7a5048986333a42.zip cpython-bfca3ca114c1ca6fc824c103a7a5048986333a42.tar.gz cpython-bfca3ca114c1ca6fc824c103a7a5048986333a42.tar.bz2 |
fix typo (closes #20892)
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/pyporting.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst index 98d58b8..9d7e859 100644 --- a/Doc/howto/pyporting.rst +++ b/Doc/howto/pyporting.rst @@ -111,7 +111,7 @@ between Python 2 and 3 easier. Projects to Consider -------------------- -The lowest level library for suppoting Python 2 & 3 simultaneously is six_. +The lowest level library for supporting Python 2 & 3 simultaneously is six_. Reading through its documentation will give you an idea of where exactly the Python language changed between versions 2 & 3 and thus what you will want the library to help you continue to support. |