summaryrefslogtreecommitdiffhomepage
path: root/Cost.hs
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2016-08-07 16:29:55 -0400
committerJoey Hess <joeyh@joeyh.name>2016-08-07 16:29:55 -0400
commitd2a6fc83a8657329fc2d3d97308801dcc1c9aa48 (patch)
treeae9ae1c2177f08b911c145abe607fb7fa5a61b37 /Cost.hs
parent2ae2ac2e415a7607be21485652fe94c6e63ead91 (diff)
downloadkeysafe-d2a6fc83a8657329fc2d3d97308801dcc1c9aa48.tar.gz
clarify
Diffstat (limited to 'Cost.hs')
-rw-r--r--Cost.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cost.hs b/Cost.hs
index 38b6e28..ba3017b 100644
--- a/Cost.hs
+++ b/Cost.hs
@@ -9,7 +9,7 @@ import Data.Monoid
-- | An estimated cost to perform an operation.
data Cost op
- = CPUCost Seconds
+ = CPUCost Seconds -- ^ using 1 CPU core
| GPUCost Seconds
| CombinedCost (Cost op) (Cost op)
deriving (Show)