Skip to content

Commit

Permalink
Remove unnecessary parentheses.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanknowles committed Dec 25, 2023
1 parent 2bd1431 commit 83cceb5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/example/Test/QuickCheck/Quid/Example.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ import Test.QuickCheck.Quid

newtype FooId = FooId (Decimal Quid)
deriving stock (Eq, Generic, Ord, Read, Show)
deriving Arbitrary via (Size 256 Quid)
deriving Arbitrary via Size 256 Quid
deriving CoArbitrary via Quid
deriving anyclass Function
deriving newtype Num

newtype BarId = BarId (Hexadecimal Quid)
deriving stock (Eq, Generic, Ord, Read, Show)
deriving Arbitrary via (Size 256 Quid)
deriving Arbitrary via Size 256 Quid
deriving CoArbitrary via Quid
deriving anyclass Function
deriving newtype Num

newtype BazId = BazId (Latin Quid)
deriving stock (Eq, Generic, Ord, Read, Show)
deriving Arbitrary via (Size 256 Quid)
deriving Arbitrary via Size 256 Quid
deriving CoArbitrary via Quid
deriving anyclass Function

0 comments on commit 83cceb5

Please sign in to comment.