Skip to content

Commit b21a344

Browse files
committed
Try being explicit with parens
Hopefully hlint is OK with this.
1 parent a96ffdf commit b21a344

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Reflex/Patch.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ instance Additive (f (g a)) => Additive ((f :.: g) a)
7676
-- | Product of groups, Functor style.
7777
instance (Group (f a), Group (g a)) => Group ((f :*: g) a) where
7878
negateG (a :*: b) = negateG a :*: negateG b
79-
(a :*: b) ~~ (c :*: d) = (a ~~ c :*: b ~~ d)
79+
(a :*: b) ~~ (c :*: d) = (a ~~ c) :*: (b ~~ d)
8080
instance (Additive (f a), Additive (g a)) => Additive ((f :*: g) a)
8181

8282
-- | Trivial group, Functor style

0 commit comments

Comments
 (0)