From: Ian Lynagh Date: Sun, 4 Jan 2009 15:44:05 +0000 (+0000) Subject: Fix typo (reqwests -> requests); trac #2908, spotted by bancroft X-Git-Url: http://git.megacz.com/?p=ghc-base.git;a=commitdiff_plain;h=328a2c4f748e81a1e613e2de48ebe86cfff60c67 Fix typo (reqwests -> requests); trac #2908, spotted by bancroft --- diff --git a/Control/Concurrent.hs b/Control/Concurrent.hs index 7f252f2..e171285 100644 --- a/Control/Concurrent.hs +++ b/Control/Concurrent.hs @@ -525,7 +525,7 @@ foreign import ccall safe "fdReady" The "System.IO" library manages multiplexing in its own way. On Windows systems it uses @safe@ foreign calls to ensure that threads doing I\/O operations don't block the whole runtime, - whereas on Unix systems all the currently blocked I\/O reqwests + whereas on Unix systems all the currently blocked I\/O requests are managed by a single thread (the /IO manager thread/) using @select@.