diff options
author | Evan Relf <evan@evanrelf.com> | 2022-08-25 12:21:50 -0700 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-10-27 13:03:12 +0100 |
commit | 9f170d5ff0508c83b012adf2e72470b16fc817b8 (patch) | |
tree | 6a9b3bfc0a2d5427566aa955676712c958750dfd | |
parent | f60a1a62bf88ec787a5b5d1725129a24b6b81f4a (diff) | |
download | haskell-wip/broken-async.tar.gz |
Fix broken link to `async` packagewip/broken-async
-rw-r--r-- | libraries/base/GHC/Conc/Sync.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Conc/Sync.hs b/libraries/base/GHC/Conc/Sync.hs index aabe0b159e..5fe89aa4c3 100644 --- a/libraries/base/GHC/Conc/Sync.hs +++ b/libraries/base/GHC/Conc/Sync.hs @@ -273,7 +273,7 @@ exception handler. WARNING: Exceptions in the new thread will not be rethrown in the thread that created it. This means that you might be completely unaware of the problem if/when this happens. You may want to use the -<hackage.haskell.org/package/async async> library instead. +<https://hackage.haskell.org/package/async async> library instead. -} forkIO :: IO () -> IO ThreadId forkIO action = IO $ \ s -> |