[project @ 2003-04-23 13:22:16 by simonmar]
authorsimonmar <unknown>
Wed, 23 Apr 2003 13:22:16 +0000 (13:22 +0000)
committersimonmar <unknown>
Wed, 23 Apr 2003 13:22:16 +0000 (13:22 +0000)
Doc wibble.

GHC/Base.lhs

index 2598583..0935b5c 100644 (file)
@@ -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