diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # libarchive
 
+## 2.0.0.1
+
+  * Polish documentation
+
 ## 2.0.0.0
 
   * Fix typo in documentation
diff --git a/libarchive.cabal b/libarchive.cabal
--- a/libarchive.cabal
+++ b/libarchive.cabal
@@ -1,6 +1,6 @@
 cabal-version:   1.18
 name:            libarchive
-version:         2.0.0.0
+version:         2.0.0.1
 license:         BSD3
 license-file:    LICENSE
 copyright:       Copyright: (c) 2018-2019 Vanessa McHale
diff --git a/src/Codec/Archive/Foreign/ArchiveEntry.chs b/src/Codec/Archive/Foreign/ArchiveEntry.chs
--- a/src/Codec/Archive/Foreign/ArchiveEntry.chs
+++ b/src/Codec/Archive/Foreign/ArchiveEntry.chs
@@ -1,4 +1,4 @@
-
+-- | This module corresponds to @archive_entry.h@
 --
 -- Functions in this module are stateful and hence take place in the 'IO'
 -- monad.
diff --git a/src/Codec/Archive/Unpack/Lazy.hs b/src/Codec/Archive/Unpack/Lazy.hs
--- a/src/Codec/Archive/Unpack/Lazy.hs
+++ b/src/Codec/Archive/Unpack/Lazy.hs
@@ -32,8 +32,6 @@
 
 -- | In general, this will be more efficient than 'unpackToDir'
 --
--- The 'BSL.ByteString' chunks should be @32k@ bytes.
---
 -- @since 1.0.4.0
 unpackToDirLazy :: FilePath -- ^ Directory to unpack in
                 -> BSL.ByteString -- ^ 'BSL.ByteString' containing archive
@@ -48,8 +46,6 @@
 -- detected.
 --
 -- In general, this will be more efficient than 'readArchiveBS'
---
--- The 'BSL.ByteString' chunks should be @32k@ bytes.
 --
 -- @since 1.0.4.0
 readArchiveBSL :: BSL.ByteString -> Either ArchiveResult [Entry]
