diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2018-10-01 15:18:59 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2018-10-02 12:58:39 +0200 |
commit | 6781db5c789b67b94db626085bccfacc668f3eef (patch) | |
tree | 09b27c5776323e607eb43176aa377c5a8d3d340f /docs/src | |
parent | ee87f34474605b5c2db2870621e8cb72c2043cae (diff) | |
download | libuv-6781db5c789b67b94db626085bccfacc668f3eef.tar.gz libuv-6781db5c789b67b94db626085bccfacc668f3eef.zip |
doc: remove extraneous "on"
Fixes: https://github.com/libuv/libuv/issues/2000
PR-URL: https://github.com/libuv/libuv/pull/2010
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jamie Davis <davisjam@vt.edu>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/design.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/design.rst b/docs/src/design.rst index 487d08ba..001b1233 100644 --- a/docs/src/design.rst +++ b/docs/src/design.rst @@ -126,7 +126,7 @@ so the current approach is to run blocking file I/O operations in a thread pool. For a thorough explanation of the cross-platform file I/O landscape, checkout `this post <http://blog.libtorrent.org/2012/10/asynchronous-disk-io/>`_. -libuv currently uses a global thread pool on which all loops can queue work on. 3 types of +libuv currently uses a global thread pool on which all loops can queue work. 3 types of operations are currently run on this pool: * File system operations |