diff --git a/11-functors-applicative-functors-and-monoids.hs b/11-functors-applicative-functors-and-monoids.hs index 874f463..b5924c1 100644 --- a/11-functors-applicative-functors-and-monoids.hs +++ b/11-functors-applicative-functors-and-monoids.hs @@ -12,7 +12,6 @@ instance Functor List where -- Write a function which appends one list on to another combineLists:: List a -> List a -> List a combineLists Empty other = other -combineLists other Empty = other combineLists (Value v rest) other = Value v (combineLists rest other) -- Make our list a Monoid