]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
src/Point.hs: import "arbitrary" explicitly.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 5 Mar 2019 02:05:16 +0000 (21:05 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 5 Mar 2019 02:05:16 +0000 (21:05 -0500)
src/Point.hs

index 54c4f72913f37611bdf81861a30af49204dc50ce..004b2e4498f99920971b9f36a2d3b6aa8d32dc01 100644 (file)
@@ -6,7 +6,7 @@ module Point (
   scale )
 where
 
-import Test.Tasty.QuickCheck ( Arbitrary(..) )
+import Test.Tasty.QuickCheck ( Arbitrary( arbitrary ) )
 
 
 -- | Represents a point in three dimensions. We use a custom type (as