diff --git a/hasql-pool.cabal b/hasql-pool.cabal
--- a/hasql-pool.cabal
+++ b/hasql-pool.cabal
@@ -1,7 +1,7 @@
 cabal-version: 3.0
 
 name: hasql-pool
-version: 0.8
+version: 0.8.0.1
 
 category: Hasql, Database, PostgreSQL
 synopsis: Pool of connections for Hasql
diff --git a/library/Hasql/Pool.hs b/library/Hasql/Pool.hs
--- a/library/Hasql/Pool.hs
+++ b/library/Hasql/Pool.hs
@@ -19,7 +19,7 @@
 
 data ReuseConnection = Keep | Close
 
--- | A pool of connections to DB.
+-- | Pool of connections to DB.
 data Pool = Pool
   { -- | Connection settings.
     poolFetchConnectionSettings :: IO Connection.Settings,
@@ -63,7 +63,7 @@
   Int ->
   -- | Connection acquisition timeout.
   Maybe Int ->
-  -- | Action fetching connection settings settings.
+  -- | Action fetching connection settings.
   IO Connection.Settings ->
   IO Pool
 acquireDynamically poolSize timeout fetchConnectionSettings = do
