[commit: ghc] master: Correct > to > in user's guide (971f2c9)

git at git.haskell.org git at git.haskell.org
Wed Nov 18 22:13:44 UTC 2015


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

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/971f2c9ddc4b1e3f2cfc2dbce7f0825448b975fd/ghc

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

commit 971f2c9ddc4b1e3f2cfc2dbce7f0825448b975fd
Author: Reid Barton <rwbarton at gmail.com>
Date:   Wed Nov 18 23:12:05 2015 +0100

    Correct > to > in user's guide
    
    Reviewers: austin, bgamari
    
    Reviewed By: bgamari
    
    Subscribers: thomie
    
    Differential Revision: https://phabricator.haskell.org/D1497


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

971f2c9ddc4b1e3f2cfc2dbce7f0825448b975fd
 docs/users_guide/glasgow_exts.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/users_guide/glasgow_exts.rst b/docs/users_guide/glasgow_exts.rst
index 70879b1..42f60bc 100644
--- a/docs/users_guide/glasgow_exts.rst
+++ b/docs/users_guide/glasgow_exts.rst
@@ -3801,10 +3801,10 @@ There are some other differences regarding what data types can have derived
    this data type::
 
        data E a where
-           E1 :: (a ~ Int) => a   -> E a
+           E1 :: (a ~ Int) => a   -> E a
            E2 ::              Int -> E Int
-           E3 :: (a ~ Int) => a   -> E Int
-           E4 :: (a ~ Int) => Int -> E a
+           E3 :: (a ~ Int) => a   -> E Int
+           E4 :: (a ~ Int) => Int -> E a
 
        deriving instance Foldable E
 



More information about the ghc-commits mailing list