[project @ 2002-05-28 11:41:29 by simonmar]
authorsimonmar <unknown>
Tue, 28 May 2002 11:41:29 +0000 (11:41 +0000)
committersimonmar <unknown>
Tue, 28 May 2002 11:41:29 +0000 (11:41 +0000)
Documentation tweaks

GHC/Exts.hs

index a1e6db9..6386932 100644 (file)
@@ -8,26 +8,24 @@
 -- Stability   :  internal
 -- Portability :  non-portable (GHC Extensions)
 --
--- GHC Extensions: this is the Approved Way to get at GHC-specific stuff.
+-- GHC Extensions: this is the Approved Way to get at GHC-specific extensions.
 --
 -----------------------------------------------------------------------------
 
 module GHC.Exts
        (
-        -- the representation of some basic types:
+        -- * Representations of some basic types
         Int(..),Word(..),Float(..),Double(..),Integer(..),Char(..),
 
-       -- Fusion
-       build, augment,
-
-       -- shifty wrappers from GHC.Base
+        -- * Primitive operations
+        module GHC.Prim
        shiftL#, shiftRL#, iShiftL#, iShiftRA#, iShiftRL#,
 
-       -- for linear implicit parameters:
-       Splittable(..),
+       -- * Fusion
+       build, augment,
 
-        -- and finally, all the unboxed primops of GHC!
-        module GHC.Prim
+       -- * Linear implicit parameter support
+       Splittable(..),
 
        ) where