summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-05-03 04:35:43 (GMT)
committerGitHub <noreply@github.com>2017-05-03 04:35:43 (GMT)
commit5bcf01d4cdc78f6b01e5017ff60da7dbfc34c36b (patch)
tree4d0a5627217be3ebbfbc935f68ff0687fcc85048
parent564e89f43b8d64c165755e3c7a94e4daecfde5a3 (diff)
downloadcpython-5bcf01d4cdc78f6b01e5017ff60da7dbfc34c36b.zip
cpython-5bcf01d4cdc78f6b01e5017ff60da7dbfc34c36b.tar.gz
cpython-5bcf01d4cdc78f6b01e5017ff60da7dbfc34c36b.tar.bz2
[3.6] Fix typo in selectors.rst (GH-1383) (#1414)
decriptor -> descriptor (cherry picked from commit b0d82036549074357717d130a772d1e2ebc8ea01)
-rw-r--r--Doc/library/selectors.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/selectors.rst b/Doc/library/selectors.rst
index 1624d88..6d864a8 100644
--- a/Doc/library/selectors.rst
+++ b/Doc/library/selectors.rst
@@ -68,7 +68,7 @@ constants below:
.. class:: SelectorKey
A :class:`SelectorKey` is a :class:`~collections.namedtuple` used to
- associate a file object to its underlying file decriptor, selected event
+ associate a file object to its underlying file descriptor, selected event
mask and attached data. It is returned by several :class:`BaseSelector`
methods.