1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 21:01:35 +03:00

Formatting.

This commit is contained in:
Rob Rix 2016-06-30 12:50:52 -04:00
parent 28abcd1b38
commit ee393400f2

View File

@ -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)