From: Scott Worley Date: Fri, 24 May 2019 02:59:36 +0000 (-0700) Subject: Remove unnecessary comment with bad grammar X-Git-Tag: v1.0~3 X-Git-Url: http://git.scottworley.com/inverse-tax/commitdiff_plain/272ad45ce0d6bd3fd425a02523e0b6b4feb47dee Remove unnecessary comment with bad grammar --- diff --git a/tax.js b/tax.js index f3d2406..2687387 100644 --- 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);