diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-05-16 23:44:34 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-05-20 11:01:34 -0400 |
commit | 9171c7f847bc71770a4bb351c4274069d64cd847 (patch) | |
tree | eadf0b6b421ac5b2d40aa11bfed100de40d3f71a | |
parent | c617c1fb9403dc80f95c8083db9d347ce839b70f (diff) | |
download | haskell-9171c7f847bc71770a4bb351c4274069d64cd847.tar.gz |
base: Fix typo
-rw-r--r-- | libraries/base/GHC/Conc/IO.hs | 2 |
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. -- |