summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerbert Valerio Riedel <hvr@gnu.org>2015-11-26 00:26:23 +0100
committerBen Gamari <ben@smart-cactus.org>2015-11-26 00:26:24 +0100
commitc7a058fb8fa4e9dea55692924b49057d63b2fffd (patch)
treec2a1203d830cf03e381457817cfd6508d081f64a
parent9aa94586fde73e818e32e5cc0e6420f6ed36a80b (diff)
downloadhaskell-c7a058fb8fa4e9dea55692924b49057d63b2fffd.tar.gz
User's Guide: Add links to MFP wiki page
Test Plan: IIAM Reviewers: austin, bgamari, quchen Reviewed By: bgamari, quchen Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D1529 GHC Trac Issues: #10751
-rw-r--r--docs/users_guide/7.12.1-notes.rst3
-rw-r--r--docs/users_guide/glasgow_exts.rst3
-rw-r--r--docs/users_guide/using-warnings.rst3
3 files changed, 6 insertions, 3 deletions
diff --git a/docs/users_guide/7.12.1-notes.rst b/docs/users_guide/7.12.1-notes.rst
index 4456454503..6fac019879 100644
--- a/docs/users_guide/7.12.1-notes.rst
+++ b/docs/users_guide/7.12.1-notes.rst
@@ -161,7 +161,8 @@ Compiler
- Added the ``-fwarn-missing-monadfail-instance`` flag. When enabled, this
will issue a warning if a failable pattern is used in a context that does
not have a ``MonadFail`` constraint. This flag represents phase 1 of the
- MonadFail proposal (MFP).
+ `MonadFail Proposal (MFP)
+ <https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail>`__.
GHCi
~~~~
diff --git a/docs/users_guide/glasgow_exts.rst b/docs/users_guide/glasgow_exts.rst
index 2289440134..725ed2bbed 100644
--- a/docs/users_guide/glasgow_exts.rst
+++ b/docs/users_guide/glasgow_exts.rst
@@ -1818,7 +1818,8 @@ New monadic failure desugaring mechanism
The ``-XMonadFailDesugaring`` extension switches the desugaring of
``do``-blocks to use ``MonadFail.fail`` instead of ``Monad.fail``. This will
eventually be the default behaviour in a future GHC release, under the
-MonadFail Proposal (MFP).
+`MonadFail Proposal (MFP)
+<https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail>`__.
This extension is temporary, and will be deprecated in a future release. It is
included so that library authors have a hard check for whether their code
diff --git a/docs/users_guide/using-warnings.rst b/docs/users_guide/using-warnings.rst
index 5bec157b06..4c2bc88710 100644
--- a/docs/users_guide/using-warnings.rst
+++ b/docs/users_guide/using-warnings.rst
@@ -242,7 +242,8 @@ command line.
Being part of the ``-Wcompat`` option group, this warning is off by
default, but will be switched on in a future GHC release, as part of
- the MFP (MonadFail Proposal).
+ the `MonadFail Proposal (MFP)
+ <https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail>`__.
``-fwarn-deprecated-flags``
.. index::