diff options
author | Ömer Sinan Ağacan <omeragacan@gmail.com> | 2017-07-02 09:59:57 +0300 |
---|---|---|
committer | Ömer Sinan Ağacan <omeragacan@gmail.com> | 2017-07-02 09:59:57 +0300 |
commit | 05923183fe8478370b58a51398de8c899f954286 (patch) | |
tree | f6f427d863885088eb4c8c8b3018adabf35d131c | |
parent | 1ef4156e45dcb258f6ef05cfb909547b8e3beb0f (diff) | |
download | haskell-05923183fe8478370b58a51398de8c899f954286.tar.gz |
Fix paper link in MVar docs [ci skip]
-rw-r--r-- | libraries/base/Control/Concurrent/MVar.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Control/Concurrent/MVar.hs b/libraries/base/Control/Concurrent/MVar.hs index f76eaeb906..393fca89e2 100644 --- a/libraries/base/Control/Concurrent/MVar.hs +++ b/libraries/base/Control/Concurrent/MVar.hs @@ -25,7 +25,7 @@ -- wait and signal. -- -- They were introduced in the paper --- <http://research.microsoft.com/~simonpj/papers/concurrent-haskell.ps.gz "Concurrent Haskell"> +-- <https://www.haskell.org/ghc/docs/papers/concurrent-haskell.ps.gz "Concurrent Haskell"> -- by Simon Peyton Jones, Andrew Gordon and Sigbjorn Finne, though -- some details of their implementation have since then changed (in -- particular, a put on a full 'MVar' used to error, but now merely |