diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,14 @@
 # Revision history for cabal-detailed-quickcheck
 
-## 0.1.1.2 — 2022-04-25
+### 0.1.1.3 — 2022-04-25
 
 * Improved documentation.
 
-## 0.1.1.1 — 2022-04-25
+### 0.1.1.2 — 2022-04-25
+
+* Improved documentation.
+
+### 0.1.1.1 — 2022-04-25
 
 * Improved packaging.
 
diff --git a/cabal-detailed-quickcheck.cabal b/cabal-detailed-quickcheck.cabal
--- a/cabal-detailed-quickcheck.cabal
+++ b/cabal-detailed-quickcheck.cabal
@@ -1,6 +1,6 @@
 cabal-version:      2.4
 name:               cabal-detailed-quickcheck
-version:            0.1.1.2
+version:            0.1.1.3
 synopsis:           QuickCheck for Cabal tests
 description:        Turn QuickCheck properties into detailed Cabal tests
 homepage:           https://github.com/schuelermine/cabal-detailed-quickcheck
@@ -30,4 +30,4 @@
 source-repository this
     type:               git
     location:           https://github.com/schuelermine/cabal-detailed-quickcheck.git
-    tag:                0.1.1.2
+    tag:                0.1.1.3
diff --git a/lib/Distribution/TestSuite/QuickCheck.hs b/lib/Distribution/TestSuite/QuickCheck.hs
--- a/lib/Distribution/TestSuite/QuickCheck.hs
+++ b/lib/Distribution/TestSuite/QuickCheck.hs
@@ -338,6 +338,6 @@
 getPropertyTests :: QC.Testable prop => [PropertyTest prop] -> [T.Test]
 getPropertyTests = (getPropertyTest <$>)
 
--- | Get a named test group from a list of 'PropertyTests's. These are assumed to be able to run in parallel. See 'T.testGroup' and 'T.Group'.
+-- | Get a named test group from a list of 'PropertyTest's. These are assumed to be able to run in parallel. See 'T.testGroup' and 'T.Group'.
 propertyTestGroup :: QC.Testable prop => String -> [PropertyTest prop] -> T.Test
 propertyTestGroup name = T.testGroup name . getPropertyTests
