From dfdd98059d68d12f72b68cd5b400e278392e6b08 Mon Sep 17 00:00:00 2001 From: Zentex Date: Tue, 3 Feb 2026 22:42:13 +0530 Subject: [PATCH] Fix grammar: values is -> value is in abaci.sol --- src/abaci.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/abaci.sol b/src/abaci.sol index 6cbd6662..56f26daa 100644 --- a/src/abaci.sol +++ b/src/abaci.sol @@ -164,7 +164,7 @@ contract StairstepExponentialDecrease is Abacus { // dur: seconds since the auction has started // step: seconds between a price drop // cut: cut encodes the percentage to decrease per step. - // For efficiency, the values is set as (1 - (% value / 100)) * RAY + // For efficiency, the value is set as (1 - (% value / 100)) * RAY // So, for a 1% decrease per step, cut would be (1 - 0.01) * RAY // // returns: top * (cut ^ dur) @@ -251,7 +251,7 @@ contract ExponentialDecrease is Abacus { // top: initial price // dur: seconds since the auction has started // cut: cut encodes the percentage to decrease per second. - // For efficiency, the values is set as (1 - (% value / 100)) * RAY + // For efficiency, the value is set as (1 - (% value / 100)) * RAY // So, for a 1% decrease per second, cut would be (1 - 0.01) * RAY // // returns: top * (cut ^ dur)