From 51d36140c5c2dcbe2ec8e018a49d64788387066f Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Wed, 9 Mar 2016 01:56:59 -0500 Subject: [PATCH] :fire: makeLine. --- src/Line.hs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Line.hs b/src/Line.hs index aed8b5b52..68f3f7513 100644 --- a/src/Line.hs +++ b/src/Line.hs @@ -6,10 +6,6 @@ import Data.Monoid newtype Line a = Line { unLine :: [a] } deriving (Eq, Foldable, Functor, Show, Traversable) --- | Create a line from a list of items. -makeLine :: [a] -> Line a -makeLine = Line - -- | Transform the line by applying a function to a list of all the items in the -- | line. wrapLineContents :: ([a] -> b) -> Line a -> Line b