From f1cbe58f7f201645d906f31e6208d13a3c0bbbd6 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Tue, 24 Nov 2009 13:34:21 +0000 Subject: [PATCH] Whitespace only --- GHC/Num.lhs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GHC/Num.lhs b/GHC/Num.lhs index bfc5458..87a11df 100644 --- a/GHC/Num.lhs +++ b/GHC/Num.lhs @@ -7,7 +7,7 @@ -- Module : GHC.Num -- Copyright : (c) The University of Glasgow 1994-2002 -- License : see libraries/base/LICENSE --- +-- -- Maintainer : cvs-ghc@haskell.org -- Stability : internal -- Portability : non-portable (GHC Extensions) @@ -41,7 +41,7 @@ import GHC.Integer infixl 7 * infixl 6 +, - -default () -- Double isn't available yet, +default () -- Double isn't available yet, -- and we shouldn't be using defaults anyway \end{code} @@ -62,7 +62,7 @@ class (Eq a, Show a) => Num a where -- | Absolute value. abs :: a -> a -- | Sign of a number. - -- The functions 'abs' and 'signum' should satisfy the law: + -- The functions 'abs' and 'signum' should satisfy the law: -- -- > abs x * signum x == x -- -- 1.7.10.4