diff --git a/psc-ide.cabal b/psc-ide.cabal
--- a/psc-ide.cabal
+++ b/psc-ide.cabal
@@ -1,5 +1,5 @@
 name:                psc-ide
-version:             0.6.0
+version:             0.6.1
 synopsis:            Language support for the PureScript programming language
 description:         Please see README.md
 homepage:            http://github.com/kRITZCREEK/psc-ide
diff --git a/src/PureScript/Ide/CaseSplit.hs b/src/PureScript/Ide/CaseSplit.hs
--- a/src/PureScript/Ide/CaseSplit.hs
+++ b/src/PureScript/Ide/CaseSplit.hs
@@ -104,13 +104,13 @@
 prettyWildcard :: Type -> Text
 prettyWildcard t = "( _ :: " <> T.strip (T.pack (prettyPrintTypeAtom t)) <> ")"
 
-makePattern ::
-  Text -> -- ^ current line
-  Int -> -- ^ begin of the split
-  Int -> -- ^ end of the split
-  WildcardAnnotations -> -- ^ Whether to explicitly type the splits
-  [Constructor] -> -- ^ constructors to split
-  [Text]
+-- | Constructs Patterns to insert into a sourcefile
+makePattern :: Text -- ^ Current line
+            -> Int -- ^ Begin of the split
+            -> Int -- ^ End of the split
+            -> WildcardAnnotations -- ^ Whether to explicitly type the splits
+            -> [Constructor] -- ^ Constructors to split
+            -> [Text]
 makePattern t x y wsa = makePattern' (T.take x t) (T.drop y t)
   where
     makePattern' lhs rhs = map (\ctor -> lhs <> prettyCtor wsa ctor <> rhs)
