From: simonmar Date: Wed, 23 Apr 2003 13:22:16 +0000 (+0000) Subject: [project @ 2003-04-23 13:22:16 by simonmar] X-Git-Tag: nhc98-1-18-release~673 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=3c144f9bf78f2ad5ac5a82e1a2987ebcb3e88f47;p=ghc-base.git [project @ 2003-04-23 13:22:16 by simonmar] Doc wibble. --- diff --git a/GHC/Base.lhs b/GHC/Base.lhs index 2598583..0935b5c 100644 --- a/GHC/Base.lhs +++ b/GHC/Base.lhs @@ -399,10 +399,10 @@ not :: Bool -> Bool not True = False not False = True --- |'otherwise' is defined as the value 'True'; it helps to make +-- |'otherwise' is defined as the value 'True'. It helps to make -- guards more readable. eg. -- --- > f x | x \< 0 = ... +-- > f x | x < 0 = ... -- > | otherwise = ... otherwise :: Bool otherwise = True