diff --git a/hasql.cabal b/hasql.cabal
--- a/hasql.cabal
+++ b/hasql.cabal
@@ -1,6 +1,6 @@
 cabal-version: 3.0
 name: hasql
-version: 1.8.1.1
+version: 1.8.1.2
 category: Hasql, Database, PostgreSQL
 synopsis: Fast PostgreSQL driver with a flexible mapping API
 description:
diff --git a/library/Hasql/Statement.hs b/library/Hasql/Statement.hs
--- a/library/Hasql/Statement.hs
+++ b/library/Hasql/Statement.hs
@@ -106,7 +106,7 @@
 --       Decoders.'Decoders.noResult'
 -- @
 --
--- This approach is much more efficient than executing a single-row insert-statement multiple times.
+-- While this approach is much more efficient than executing a single-row insert-statement multiple times from within 'Session', a comparable performance can also be achieved by executing a single-insert statement from within a 'Pipeline'.
 
 -- $inAndNotIn
 --
diff --git a/testing-kit/Hasql/TestingKit/Statements/BrokenSyntax.hs b/testing-kit/Hasql/TestingKit/Statements/BrokenSyntax.hs
--- a/testing-kit/Hasql/TestingKit/Statements/BrokenSyntax.hs
+++ b/testing-kit/Hasql/TestingKit/Statements/BrokenSyntax.hs
@@ -40,5 +40,4 @@
 decoder :: Decoders.Result Result
 decoder =
   Decoders.rowList
-    ( Decoders.column (Decoders.nonNullable Decoders.int8)
-    )
+    (Decoders.column (Decoders.nonNullable Decoders.int8))
diff --git a/testing-kit/Hasql/TestingKit/Statements/GenerateSeries.hs b/testing-kit/Hasql/TestingKit/Statements/GenerateSeries.hs
--- a/testing-kit/Hasql/TestingKit/Statements/GenerateSeries.hs
+++ b/testing-kit/Hasql/TestingKit/Statements/GenerateSeries.hs
@@ -40,5 +40,4 @@
 decoder :: Decoders.Result Result
 decoder =
   Decoders.rowList
-    ( Decoders.column (Decoders.nonNullable Decoders.int8)
-    )
+    (Decoders.column (Decoders.nonNullable Decoders.int8))
diff --git a/testing-kit/Hasql/TestingKit/Statements/WrongDecoder.hs b/testing-kit/Hasql/TestingKit/Statements/WrongDecoder.hs
--- a/testing-kit/Hasql/TestingKit/Statements/WrongDecoder.hs
+++ b/testing-kit/Hasql/TestingKit/Statements/WrongDecoder.hs
@@ -40,5 +40,4 @@
 decoder :: Decoders.Result Result
 decoder =
   Decoders.rowList
-    ( Decoders.column (Decoders.nonNullable Decoders.uuid)
-    )
+    (Decoders.column (Decoders.nonNullable Decoders.uuid))
