Skip to content

Commit

Permalink
[patch] fix code comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Aug 28, 2024
1 parent 8ec611a commit ea29c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implementation.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var abs = Math.abs;

var BINARY_16_EPSILON = 0.0009765625; // 2 ** -10
var BINARY_16_MIN_VALUE = 6.103515625e-05; // 2 ** -14
var BINARY_16_MAX_VALUE = 65504; // 2 ** 15 - 2 ** 10
var BINARY_16_MAX_VALUE = 65504; // 2 ** 16 - 2 ** (16 - 11)
var EPSILON = 2.220446049250313e-16; // Number.EPSILON

var inverseEpsilon = 1 / EPSILON;
Expand Down

0 comments on commit ea29c61

Please sign in to comment.