Fix incorrect function name.

This commit is contained in:
Greg Sjaardema 2023-09-20 12:29:50 -06:00 committed by GitHub
parent 4c346e97e1
commit 7572bf1831
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3258,7 +3258,7 @@ FMT_CONSTEXPR20 void format_hexfloat(Float value, int precision,
format_hexfloat(static_cast<double>(value), precision, specs, buf);
}
FMT_CONSTEXPR uint32_t fractional_part_rounding_threshold(int index) {
FMT_CONSTEXPR uint32_t fractional_part_rounding_thresholds(int index) {
// For checking rounding thresholds.
// The kth entry is chosen to be the smallest integer such that the
// upper 32-bits of 10^(k+1) times it is strictly bigger than 5 * 10^k.