From 2714c9c6383833c11492003eefd4a675999262ab Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 2 Feb 2016 12:48:16 -0600 Subject: [PATCH] Improve sentence. --- doc/src/advanced.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/advanced.rst b/doc/src/advanced.rst index 4756d016..6486dc8d 100644 --- a/doc/src/advanced.rst +++ b/doc/src/advanced.rst @@ -270,7 +270,7 @@ wasting resources. A simple application could poll the connection from time to time to check if something new has arrived. A better strategy is to use some I/O completion -function such as :py:func:`~select.select` to sleep until awaken from the kernel when there is +function such as :py:func:`~select.select` to sleep until awakened by the kernel when there is some data to read on the connection, thereby using no CPU unless there is something to read::