aboutsummaryrefslogtreecommitdiff
path: root/actions/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'actions/config.go')
-rw-r--r--actions/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/config.go b/actions/config.go
index 6bc5239..386edc4 100644
--- a/actions/config.go
+++ b/actions/config.go
@@ -173,7 +173,7 @@ func getHashingCosts(target time.Duration) (*metadata.HashingCosts, error) {
costsPrev := *costs
tPrev := t
- // Double the memory up to the max, then the double the time.
+ // Double the memory up to the max, then double the time.
if costs.Memory < memoryKiBLimit {
costs.Memory = util.MinInt64(2*costs.Memory, memoryKiBLimit)
} else {