From 186debc65020e1f906d9ca6bb8cbde9cacebe178 Mon Sep 17 00:00:00 2001 From: Orson Peters Date: Thu, 22 Sep 2022 11:34:42 +0200 Subject: [PATCH] Added which number is computed in compute_float. --- library/core/src/num/dec2flt/lemire.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/num/dec2flt/lemire.rs b/library/core/src/num/dec2flt/lemire.rs index 75405f4715418..b8b0a1d3d7e2e 100644 --- a/library/core/src/num/dec2flt/lemire.rs +++ b/library/core/src/num/dec2flt/lemire.rs @@ -6,7 +6,7 @@ use crate::num::dec2flt::table::{ LARGEST_POWER_OF_FIVE, POWER_OF_FIVE_128, SMALLEST_POWER_OF_FIVE, }; -/// Compute a float using an extended-precision representation. +/// Compute w * 10^q using an extended-precision float representation. /// /// Fast conversion of a the significant digits and decimal exponent /// a float to an extended representation with a binary float. This