1
1
mirror of https://github.com/github/semantic.git synced 2024-12-25 07:55:12 +03:00

Patch is a Functor.

This commit is contained in:
Rob Rix 2015-11-17 18:51:36 -08:00
parent da3bf047b1
commit 242ca9464b

View File

@ -4,3 +4,4 @@ data Patch a =
Replace a a
| Insert a
| Delete a
deriving (Functor, Show, Eq)