]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Whitespace cleanup in Point.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 16 Apr 2015 01:36:06 +0000 (21:36 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 16 Apr 2015 01:36:06 +0000 (21:36 -0400)
src/Point.hs

index a334c5c95642ae1f06dea200d03546aa82418316..0e29d596e583786c99ca16e7a2922db4a616fdef 100644 (file)
@@ -3,15 +3,15 @@
 module Point (
   Point(..),
   dot,
-  scale
-  )
+  scale )
 where
 
-import Test.QuickCheck (Arbitrary(..))
+import Test.QuickCheck ( Arbitrary(..) )
 
 
 -- | Represents a point in three dimensions. We use a custom type (as
 --   opposed to a 3-tuple) so that we can make the coordinates strict.
+--
 data Point =
   Point !Double !Double !Double
   deriving (Eq, Show)