summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-05-03 04:36:01 (GMT)
committerGitHub <noreply@github.com>2017-05-03 04:36:01 (GMT)
commitf99623a5bee30b18a8fa55a9061753064d8a88f4 (patch)
treece04bfd501e981474581f25e67849859f48c31fd /Doc/library
parent22982350235f8c5821b71661a5616423e1c7fcc0 (diff)
downloadcpython-f99623a5bee30b18a8fa55a9061753064d8a88f4.zip
cpython-f99623a5bee30b18a8fa55a9061753064d8a88f4.tar.gz
cpython-f99623a5bee30b18a8fa55a9061753064d8a88f4.tar.bz2
[3.5] Fix typo in selectors.rst (GH-1383) (#1415)
decriptor -> descriptor (cherry picked from commit b0d82036549074357717d130a772d1e2ebc8ea01)
Diffstat (limited to 'Doc/library')
-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.