Merge pull request #1532 from levinotik/doc-fixes

Fix typo in docs
This commit is contained in:
Roland Kuhn 2013-07-04 02:21:40 -07:00
commit 261ddcffa3

View file

@ -117,7 +117,7 @@ Blocking Needs Careful Management
In some cases it is unavoidable to do blocking operations, i.e. to put a thread
to sleep for an indeterminate time, waiting for an external event to occur.
Examples are legacy RDBMS drivers or messaging APIs, and the underlying reason
in typically that (network) I/O occurs under the covers. When facing this, you
is typically that (network) I/O occurs under the covers. When facing this, you
may be tempted to just wrap the blocking call inside a :class:`Future` and work
with that instead, but this strategy is too simple: you are quite likely to
find bottlenecks or run out of memory or threads when the application runs