diff options
author | Evan Relf <evan@evanrelf.com> | 2022-08-25 12:21:50 -0700 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-10-27 13:56:36 -0400 |
commit | a8ed36f9583a7936afc066d8bec20b41ef3a3d1a (patch) | |
tree | 61a3c023a4f0e9059edd3f33ed66b2e741789308 /libraries | |
parent | 22e3deb9e99606ade188c12a2a6679a462e81aa0 (diff) | |
download | haskell-a8ed36f9583a7936afc066d8bec20b41ef3a3d1a.tar.gz |
Fix broken link to `async` package
Diffstat (limited to 'libraries')
-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 -> |