diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -9,3 +9,7 @@
 * Exposes composeProcess for quickly composing StochProcesses.
 * Un-reinvents the State monad.
 * Adds gamma and beta distributions.
+
+## 0.1.1.1  -- 2016-08-27
+
+* Fixes haddock issue.
diff --git a/src/Data/Stochastic/Types.hs b/src/Data/Stochastic/Types.hs
--- a/src/Data/Stochastic/Types.hs
+++ b/src/Data/Stochastic/Types.hs
@@ -51,10 +51,8 @@
     DiscreteUniform :: [a] -> Distribution a
     Uniform :: Distribution Double
     Certain :: a -> Distribution a
+    -- | Gamma distribution, where the first parameter is the shape parameter alpha, and the second parameter is the scale parameter beta.
     Gamma :: Double -> Double -> Distribution Double
-    -- ^ Gamma distribution, where the first parameter is the
-    -- shape parameter alpha, and the second parameter is the
-    -- scale parameter beta.
     Beta :: Double -> Double -> Distribution Double
 
 -- | Class of types from which samples can be obtained.
diff --git a/stochastic.cabal b/stochastic.cabal
--- a/stochastic.cabal
+++ b/stochastic.cabal
@@ -10,7 +10,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.1.1.0
+version:             0.1.1.1
 
 -- A short (one-line) description of the package.
 synopsis:            Monadic composition of probabilistic functions and sampling.
