[project @ 2006-01-11 11:29:49 by simonmar]
[ghc-base.git] / Data / Array / Unboxed.hs
index 932a1c9..2e24fad 100644 (file)
@@ -6,15 +6,18 @@
 -- 
 -- Maintainer  :  libraries@haskell.org
 -- Stability   :  experimental
--- Portability :  non-portable
+-- Portability :  non-portable (uses Data.Array.IArray)
 --
--- Unboxed immutable array type.
+-- Unboxed immutable arrays.
 --
 -----------------------------------------------------------------------------
 
 module Data.Array.Unboxed (
-   module Data.Array.IArray,
+   -- * Arrays with unboxed elements
    UArray,
+
+   -- * The overloaded immutable array interface
+   module Data.Array.IArray,
  ) where
 
 import Prelude