From: Michael Orlitzky Date: Thu, 16 Apr 2015 01:36:53 +0000 (-0400) Subject: Add a comment to the ScaleFactor module. X-Git-Tag: 0.0.1~7 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=2ed54d29f525017ee7204f97cc1b15c01b1ae9c8 Add a comment to the ScaleFactor module. --- diff --git a/src/ScaleFactor.hs b/src/ScaleFactor.hs index 9c5530f..4353f0c 100644 --- a/src/ScaleFactor.hs +++ b/src/ScaleFactor.hs @@ -1,5 +1,6 @@ -module ScaleFactor - (ScaleFactor) +-- | The 'ScaleFactor' type. Yup, this is it. +-- +module ScaleFactor ( ScaleFactor ) where -type ScaleFactor = (Int, Int, Int) +type ScaleFactor = ( Int, Int, Int )