diff --git a/src/Foreign/Storable/FixedArray.hs b/src/Foreign/Storable/FixedArray.hs
--- a/src/Foreign/Storable/FixedArray.hs
+++ b/src/Foreign/Storable/FixedArray.hs
@@ -23,7 +23,7 @@
    do ptr <- get
       lift $ poke ptr x
       put (ptr `advancePtr` 1)
---      put (ptr `plusPtr` size x + div (- size x) (alignment x))
+-- ToDo: put (ptr `plusPtr` roundUp (alignment x) (sizeOf x))
 
 {-# INLINE peekNext #-}
 peekNext :: (Storable a) => StateT (Ptr a) IO a
diff --git a/src/Foreign/Storable/Newtype.hs b/src/Foreign/Storable/Newtype.hs
--- a/src/Foreign/Storable/Newtype.hs
+++ b/src/Foreign/Storable/Newtype.hs
@@ -3,7 +3,7 @@
 
 Example:
 
-> import Foreign.Storable.Newtype as Store
+> import qualified Foreign.Storable.Newtype as Store
 >
 > newtype MuLaw = MuLaw {deMuLaw :: Word8}
 >
diff --git a/storable-record.cabal b/storable-record.cabal
--- a/storable-record.cabal
+++ b/storable-record.cabal
@@ -1,5 +1,5 @@
 Name:         storable-record
-Version:      0.0.4
+Version:      0.0.4.1
 Category:     Data, Foreign
 Synopsis:     Elegant definition of Storable instances for records
 Description:
@@ -63,7 +63,7 @@
 Source-Repository this
   Type:     darcs
   Location: http://code.haskell.org/~thielema/storable-record/
-  Tag:      0.0.4
+  Tag:      0.0.4.1
 
 Flag splitBase
   description: Choose the new smaller, split-up base package.
