diff --git a/README.org b/README.org index 1e03e2d..46272ed 100644 --- a/README.org +++ b/README.org @@ -27,7 +27,7 @@ File retention is as per the following formula #+begin_src text -retention = min_days + (max_days - min_days) * (1 - file_size / max_size)) ^ e +retention = min_days + (max_days - min_days) * (1 - file_size / max_size) ^ e #+end_src Cleanup happens everyday when midnight (IST) has passed diff --git a/src/index.html b/src/index.html index ce82214..e0e334b 100644 --- a/src/index.html +++ b/src/index.html @@ -37,7 +37,7 @@ max_size = {{MAX_SIZE}} // in megabytes max_days = {{MAX_DAYS}} min_days = {{MIN_DAYS}} - retention = min_days + (max_days - min_days) * (1 - file_size / max_size)) ^ e + retention = min_days + (max_days - min_days) * (1 - file_size / max_size) ^ e Cleanup happens everyday when midnight (IST) has passed