Remove unnecessary parens
authorIan Lynagh <igloo@earth.li>
Tue, 2 Jun 2009 18:36:08 +0000 (18:36 +0000)
committerIan Lynagh <igloo@earth.li>
Tue, 2 Jun 2009 18:36:08 +0000 (18:36 +0000)
GHC/Float.lhs

index 3059db9..0d535c5 100644 (file)
@@ -205,7 +205,7 @@ instance  RealFrac Float  where
 #error FLT_RADIX must be 2
 #endif
     properFraction (F# x#)
-      = case (decodeFloat_Int# x#) of
+      = case decodeFloat_Int# x# of
         (# m#, n# #) ->
             let m = I# m#
                 n = I# n#