Repository : ssh://darcs.haskell.org//srv/darcs/packages/base

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/7a2a256b6650c17ac1b0cc8d7acf1f49c183d77b

>---------------------------------------------------------------

commit 7a2a256b6650c17ac1b0cc8d7acf1f49c183d77b
Author: Ian Lynagh <[email protected]>
Date:   Tue Jun 19 20:00:56 2012 +0100

    Fix typos

>---------------------------------------------------------------

 GHC/Real.lhs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/GHC/Real.lhs b/GHC/Real.lhs
index 5a2cec7..d4e407e 100644
--- a/GHC/Real.lhs
+++ b/GHC/Real.lhs
@@ -371,8 +371,8 @@ instance  Integral Integer where
     _ `div` 0 = divZeroError
     n `div` d = n `divInteger` d
 
-    _ `mov` 0 = divZeroError
-    n `mov`  d = n `movInteger`  d
+    _ `mod` 0 = divZeroError
+    n `mod`  d = n `modInteger`  d
 
     _ `divMod` 0 = divZeroError
     a `divMod` b = case a `divModInteger` b of



_______________________________________________
Cvs-libraries mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/cvs-libraries

Reply via email to