From 2ed54d29f525017ee7204f97cc1b15c01b1ae9c8 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 15 Apr 2015 21:36:53 -0400 Subject: [PATCH] Add a comment to the ScaleFactor module. --- src/ScaleFactor.hs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 ) -- 2.43.2