[commit: ghc] master: Fix typo in 8.6.1 notes (34b8e61)

git at git.haskell.org git at git.haskell.org
Tue Aug 28 20:31:44 UTC 2018


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/34b8e613606653187f1ffae36a83e33f0c673720/ghc

>---------------------------------------------------------------

commit 34b8e613606653187f1ffae36a83e33f0c673720
Author: Krzysztof Gogolewski <krz.gogolewski at gmail.com>
Date:   Tue Aug 28 22:31:22 2018 +0200

    Fix typo in 8.6.1 notes


>---------------------------------------------------------------

34b8e613606653187f1ffae36a83e33f0c673720
 docs/users_guide/8.6.1-notes.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/users_guide/8.6.1-notes.rst b/docs/users_guide/8.6.1-notes.rst
index 7faef04..cfa2880 100644
--- a/docs/users_guide/8.6.1-notes.rst
+++ b/docs/users_guide/8.6.1-notes.rst
@@ -35,7 +35,7 @@ Language
   the common ``MonadTrans`` typeclass could now make the expectation that an
   applied transformer is must be a ``Monad`` ::
 
-      class (forall a. Monad m => Monad (t m)) => MonadTrans t where {- ... -}
+      class (forall m. Monad m => Monad (t m)) => MonadTrans t where {- ... -}
 
   Additionally, quantification can enable terminating instance resolution
   where this previously was not possible. See :ref:`quantified-constraints` for



More information about the ghc-commits mailing list