Comment wibble
authorIan Lynagh <igloo@earth.li>
Wed, 30 Jul 2008 20:21:27 +0000 (20:21 +0000)
committerIan Lynagh <igloo@earth.li>
Wed, 30 Jul 2008 20:21:27 +0000 (20:21 +0000)
GHC/Num.lhs

index c24749a..a53b9de 100644 (file)
@@ -286,9 +286,9 @@ enumDeltaIntegerFB c x d = x `seq` (x `c` enumDeltaIntegerFB c (x+d) d)
 
 enumDeltaInteger :: Integer -> Integer -> [Integer]
 enumDeltaInteger x d = x `seq` (x : enumDeltaInteger (x+d) d)
-   -- strict accumulator, as for Int
-   -- so, head (drop 1000000 [1 .. ] works
-   -- patch by Don Stewart <dons@galois.com>                       
+-- strict accumulator, so
+--     head (drop 1000000 [1 .. ]
+-- works
 
 enumDeltaToIntegerFB c n x delta lim
   | delta >= 0 = up_fb c n x delta lim