From 328a2c4f748e81a1e613e2de48ebe86cfff60c67 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sun, 4 Jan 2009 15:44:05 +0000 Subject: [PATCH] Fix typo (reqwests -> requests); trac #2908, spotted by bancroft --- Control/Concurrent.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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@. -- 1.7.10.4