summaryrefslogtreecommitdiff
path: root/docs/library
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-11-30 20:32:49 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-11-30 20:32:49 +0200
commitcb9da2279b021ea7a916cbf16dd0e05c009c22bb (patch)
treeba6a03890a948eac75f5d6565b6f29640f616bf9 /docs/library
parent7d25a192206f7effa47c24a52607f00efe86e2ef (diff)
docs/uselect: ipoll: Fix grammar/wording of one-shot flag description.
Diffstat (limited to 'docs/library')
-rw-r--r--docs/library/uselect.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/library/uselect.rst b/docs/library/uselect.rst
index aa70bec69..211b2a4a8 100644
--- a/docs/library/uselect.rst
+++ b/docs/library/uselect.rst
@@ -83,10 +83,10 @@ Methods
way to poll on streams.
If *flags* is 1, one-shot behavior for events is employed: streams for
- which events happened, event mask will be automatically reset (equivalent
- to ``poll.modify(obj, 0)``), so new events for such a stream won't be
- processed until new mask is set with `poll.modify()`. This behavior is
- useful for asynchronous I/O schedulers.
+ which events happened will have their event masks automatically reset
+ (equivalent to ``poll.modify(obj, 0)``), so new events for such a stream
+ won't be processed until new mask is set with `poll.modify()`. This
+ behavior is useful for asynchronous I/O schedulers.
.. admonition:: Difference to CPython
:class: attention