summaryrefslogtreecommitdiff
path: root/libraries/base/Control/Exception/Base.hs
diff options
context:
space:
mode:
authortocic <tocic@protonmail.ch>2023-04-23 12:18:40 +0300
committertocic <tocic@protonmail.ch>2023-04-23 12:18:40 +0300
commitc0d9f51090b404dfc947eb39d67cb5e4c603b18c (patch)
tree6e82c2ec5c85bdb7bcf5521daf87e03417225360 /libraries/base/Control/Exception/Base.hs
parente826cdb213e9b900dfc8f604220d8f3538b98763 (diff)
downloadhaskell-wip/fix/base_typos.tar.gz
Fix doc typos in libraries/basewip/fix/base_typos
Diffstat (limited to 'libraries/base/Control/Exception/Base.hs')
-rw-r--r--libraries/base/Control/Exception/Base.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Control/Exception/Base.hs b/libraries/base/Control/Exception/Base.hs
index 06ae041624..7cb720e885 100644
--- a/libraries/base/Control/Exception/Base.hs
+++ b/libraries/base/Control/Exception/Base.hs
@@ -223,7 +223,7 @@ onException io what = io `catch` \e -> do _ <- what
-- handle. Similarly, closing a socket (from \"network\" package) is also
-- uninterruptible under similar conditions. An example of an interruptible
-- action is 'killThread'. Completion of interruptible release actions can be
--- ensured by wrapping them in in 'uninterruptibleMask_', but this risks making
+-- ensured by wrapping them in 'uninterruptibleMask_', but this risks making
-- the program non-responsive to @Control-C@, or timeouts. Another option is to
-- run the release action asynchronously in its own thread:
--