untabify
[ghc-base.git] / Data / Word.hs
index 3f22423..bd34f72 100644 (file)
 -----------------------------------------------------------------------------
 
 module Data.Word
-  ( 
-       -- * Unsigned integral types
+  (
+        -- * Unsigned integral types
 
-       Word,
-       Word8, Word16, Word32, Word64,
-       
-       -- * Notes
-       
-       -- $notes
-       ) where
+        Word,
+        Word8, Word16, Word32, Word64,
+
+        -- * Notes
+
+        -- $notes
+        ) where
 
 #ifdef __GLASGOW_HASKELL__
 import GHC.Word
@@ -35,7 +35,7 @@ import Hugs.Word
 
 #ifdef __NHC__
 import NHC.FFI (Word8, Word16, Word32, Word64)
-import NHC.SizedTypes (Word8, Word16, Word32, Word64)  -- instances of Bits
+import NHC.SizedTypes (Word8, Word16, Word32, Word64)   -- instances of Bits
 type Word = Word32
 #endif