diff options
Diffstat (limited to 'docs/library/uselect.rst')
-rw-r--r-- | docs/library/uselect.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/library/uselect.rst b/docs/library/uselect.rst index f88ab7d1d..fb43f7e63 100644 --- a/docs/library/uselect.rst +++ b/docs/library/uselect.rst @@ -7,7 +7,7 @@ |see_cpython_module| :mod:`python:select`. This module provides functions to efficiently wait for events on multiple -streams (select streams which are ready for operations). +`streams <stream>` (select streams which are ready for operations). Functions --------- @@ -33,7 +33,7 @@ Methods .. method:: poll.register(obj[, eventmask]) - Register *obj* for polling. *eventmask* is logical OR of: + Register `stream` *obj* for polling. *eventmask* is logical OR of: * `uselect.POLLIN` - data available for reading * `uselect.POLLOUT` - more data can be written |