summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorReid Barton <rwbarton@gmail.com>2015-11-18 23:12:05 +0100
committerBen Gamari <ben@smart-cactus.org>2015-11-18 23:12:06 +0100
commit971f2c9ddc4b1e3f2cfc2dbce7f0825448b975fd (patch)
treea6c73132697d309e4c2cde52bffddbbe3e7adf0b /docs
parentcc79dd156c79068d1b9318a6b3ac7710a668fb47 (diff)
downloadhaskell-971f2c9ddc4b1e3f2cfc2dbce7f0825448b975fd.tar.gz
Correct &gt; to > in user's guide
Reviewers: austin, bgamari Reviewed By: bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D1497
Diffstat (limited to 'docs')
-rw-r--r--docs/users_guide/glasgow_exts.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/users_guide/glasgow_exts.rst b/docs/users_guide/glasgow_exts.rst
index 70879b12e8..42f60bc92b 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) =&gt; a -> E a
+ E1 :: (a ~ Int) => a -> E a
E2 :: Int -> E Int
- E3 :: (a ~ Int) =&gt; a -> E Int
- E4 :: (a ~ Int) =&gt; Int -> E a
+ E3 :: (a ~ Int) => a -> E Int
+ E4 :: (a ~ Int) => Int -> E a
deriving instance Foldable E