We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a string formatting problem more than a techincal one. All values in the table should be buffered out to include n decimal places.
If n=2 "14.0" -> "14.00" "235.6" -> "235.60" "5" -> "5.00"
There are some places in the table that use more than two decimal places, so decimals should be buffered out to match the rounding wherever needed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is a string formatting problem more than a techincal one. All values in the table should be buffered out to include n decimal places.
If n=2
"14.0" -> "14.00"
"235.6" -> "235.60"
"5" -> "5.00"
There are some places in the table that use more than two decimal places, so decimals should be buffered out to match the rounding wherever needed.
The text was updated successfully, but these errors were encountered: