File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -279,13 +279,17 @@ nodeInfoSetTo
279
279
:: To k -> NodeInfo k v -> NodeInfo k v
280
280
nodeInfoSetTo to ni = ni { _nodeInfo_to = to }
281
281
282
- -- | Helper data structure used for composing patches using the monoid instance.
282
+ -- | Helper data structure used for composing patches using the monoid instance.
283
283
data Fixup k v
284
284
= Fixup_Delete
285
285
| Fixup_Update (These (From k v ) (To k ))
286
286
287
- -- | Compose patches having the same effect as applying the patches in turn: @'applyAlways' (p <> q) == 'applyAlways' p . 'applyAlways' q@
287
+ -- | Compose patches having the same effect as applying the patches in turn:
288
+ -- @'applyAlways' (p <> q) == 'applyAlways' p . 'applyAlways' q@
288
289
instance ( Ord k
290
+ #if !MIN_VERSION_base(4,10,0)
291
+ , Semigroup p
292
+ #endif
289
293
, Monoid p
290
294
, DecidablyEmpty p
291
295
, Patch p
You can’t perform that action at this time.
0 commit comments