From ee393400f2cc4830b48c39d715cff0c2edd3ca27 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Thu, 30 Jun 2016 12:50:52 -0400 Subject: [PATCH] Formatting. --- src/Patch.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Patch.hs b/src/Patch.hs index 73084aff1..f3e322fa5 100644 --- a/src/Patch.hs +++ b/src/Patch.hs @@ -12,8 +12,8 @@ import Data.These import Prologue -- | An operation to replace, insert, or delete an item. -data Patch a = - Replace a a +data Patch a + = Replace a a | Insert a | Delete a deriving (Eq, Foldable, Functor, Show, Traversable)