From 3c144f9bf78f2ad5ac5a82e1a2987ebcb3e88f47 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 23 Apr 2003 13:22:16 +0000 Subject: [PATCH] [project @ 2003-04-23 13:22:16 by simonmar] Doc wibble. --- GHC/Base.lhs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 1.7.10.4