[project @ 2002-05-15 12:16:11 by simonmar]
authorsimonmar <unknown>
Wed, 15 May 2002 12:16:11 +0000 (12:16 +0000)
committersimonmar <unknown>
Wed, 15 May 2002 12:16:11 +0000 (12:16 +0000)
Fix non-Haddockish comments

Numeric.hs

index 2fb214d..55102a2 100644 (file)
@@ -62,11 +62,8 @@ import Array
 #endif
 
 
--- *********************************************************
--- *                                                      *
--- \subsection{Reading}
--- *                                                      *
--- *********************************************************
+-- -----------------------------------------------------------------------------
+-- Reading
 
 readInt :: Num a => a -> (Char -> Bool) -> (Char -> Int) -> ReadS a
 readInt base isDigit valDigit = readP_to_S (L.readIntP base isDigit valDigit)
@@ -102,13 +99,8 @@ readSigned readPos = readParen False read'
                               return (n,s)
 
 
--- *********************************************************
--- *                                                      *
--- \subsection{Showing}
--- *                                                      *
--- *********************************************************
-
-
+-- -----------------------------------------------------------------------------
+-- Showing
 
 #ifdef __GLASGOW_HASKELL__
 showInt :: Integral a => a -> ShowS