diff --git a/Data/DAWG/Packed.hs b/Data/DAWG/Packed.hs
--- a/Data/DAWG/Packed.hs
+++ b/Data/DAWG/Packed.hs
@@ -7,7 +7,6 @@
 A DAWG node is stored in four bytes, using 22 bits for indexing and 8 bits for data storage. This implies that
 
     * The number of nodes shouldn't exceed 2^22, or 4194304.
-
     * Input characters should be mapped to the 0-255 range.
 
 -}
@@ -67,11 +66,8 @@
 Each "Word32" represents a node. The format of a node is the following:
 
     * 22 bits: the index of the first child.
-
     * 8 bits: character data.
-
     * 1 bit: end-of-word flag.
-
     * 1 bit: end-of-childlist flag.
 
 The children of a node are laid out next to each other, so they can be iterated over by starting from the first child
diff --git a/packed-dawg.cabal b/packed-dawg.cabal
--- a/packed-dawg.cabal
+++ b/packed-dawg.cabal
@@ -1,7 +1,7 @@
 
 
 name:                packed-dawg
-version:             0.2.0.5
+version:             0.2.0.6
 synopsis:            Generation and traversal of highly compressed directed acyclic word graphs. 
 description:         Generation and traversal of highly compressed directed acyclic word graphs.
 license:             BSD3
