From: simonpj@microsoft.com Date: Mon, 5 Jun 2006 11:47:19 +0000 (+0000) Subject: Fix typo X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=8382f3ad690ab5c26bc3866f9b024bc7a2bc6308;p=ghc-hetmet.git Fix typo --- diff --git a/docs/users_guide/glasgow_exts.xml b/docs/users_guide/glasgow_exts.xml index e5b7154..f9cb3f7 100644 --- a/docs/users_guide/glasgow_exts.xml +++ b/docs/users_guide/glasgow_exts.xml @@ -1010,8 +1010,8 @@ in a type synonym, thus: f :: Discard a f x y = (x, show y) - g :: Discard Int -> (Int,Bool) -- A rank-2 type - g f = f Int True + g :: Discard Int -> (Int,String) -- A rank-2 type + g f = f 3 True