From 272ad45ce0d6bd3fd425a02523e0b6b4feb47dee Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Thu, 23 May 2019 19:59:36 -0700 Subject: [PATCH] Remove unnecessary comment with bad grammar --- tax.js | 1 - 1 file changed, 1 deletion(-) 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); -- 2.44.1