1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00

Rename the Recursive constructor.

This commit is contained in:
Rob Rix 2015-11-17 15:40:03 -08:00
parent a700b7f7ff
commit af280ae63d

View File

@ -3,7 +3,7 @@ module Operation where
import Diff
data Operation a f
= Recur (Term a Info) (Term a Info) (Diff a -> f)
= Recursive (Term a Info) (Term a Info) (Diff a -> f)
| ByKey [(String, Term a Info)] [(String, Term a Info)] ([(String, Diff a)] -> f)
| ByIndex [Term a Info] [Term a Info] ([Diff a] -> f)
deriving Functor