]> git.scottworley.com Git - inverse-tax/blobdiff - tax.js
Remove unnecessary comment with bad grammar
[inverse-tax] / tax.js
diff --git a/tax.js b/tax.js
index f3d2406cce017d7fbb7b9056d2be507b7b3f5990..2687387b60eb509d9341adbf40ba1add4010a07f 100644 (file)
--- a/tax.js
+++ b/tax.js
@@ -58,7 +58,6 @@ function invert(table) {
   // for gross:
   //   net - b = m * gross
   //   (net - b) / m = gross
-  // and the calculate the inverse's bounds
 
   const ms = table.map(([start, end, rate]) => 1 - rate);
   const full_brackets = [0].concat(table.map(([start, end, rate]) => (end - start) * rate)).slice(0, table.length);