Skip to content

Commit

Permalink
πŸ“ Improve comment
Browse files Browse the repository at this point in the history
  • Loading branch information
superbuggy committed Oct 23, 2024
1 parent 8300829 commit fe808ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cvss40.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ function roundToDecimalPlaces(value, decimalPlaces = 1) {
// Step 3: Shift the decimal point back by dividing with the same factor
const unshiftedValue = (roundedValue / factor);

// Step 4: Re-round the value with an additional buffering step to precent floating point rounding errors in previous step
// Step 4: Re-round the value with an additional buffering step to prevent floating point rounding errors in previous step
// eg. 8.6 - 7.15 will return 1.4499999999999993 rather than 1.45. When rounded to one decimal place, this will produce 1.4 which is not correct
const reRoundedValue = Math.round(unshiftedValue * reRoundFactor) / reRoundFactor;

// Step 5: Ensure the re-rounded has the correct number of decimal places
Expand Down

0 comments on commit fe808ab

Please sign in to comment.