summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2018-05-16 23:44:34 -0400
committerBen Gamari <ben@smart-cactus.org>2018-05-20 11:01:34 -0400
commit9171c7f847bc71770a4bb351c4274069d64cd847 (patch)
treeeadf0b6b421ac5b2d40aa11bfed100de40d3f71a
parentc617c1fb9403dc80f95c8083db9d347ce839b70f (diff)
downloadhaskell-9171c7f847bc71770a4bb351c4274069d64cd847.tar.gz
base: Fix typo
-rw-r--r--libraries/base/GHC/Conc/IO.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Conc/IO.hs b/libraries/base/GHC/Conc/IO.hs
index 3c37cbda7c..7e970411e0 100644
--- a/libraries/base/GHC/Conc/IO.hs
+++ b/libraries/base/GHC/Conc/IO.hs
@@ -188,7 +188,7 @@ threadDelay time
case delay# time# s of { s' -> (# s', () #)
}}
--- | Switch the value of returned 'TVar' from intial value 'False' to 'True'
+-- | Switch the value of returned 'TVar' from initial value 'False' to 'True'
-- after a given number of microseconds. The caveats associated with
-- 'threadDelay' also apply.
--