Fix some links

This commit is contained in:
Guillaume Gomez 2018-07-08 15:07:17 +02:00
parent c0ec5d5e44
commit 26615b8f20
2 changed files with 4 additions and 4 deletions

View File

@ -9,9 +9,9 @@
// except according to those terms.
/*!
Almost direct (but slightly optimized) Rust translation of Figure 3 of [1].
Almost direct (but slightly optimized) Rust translation of Figure 3 of \[1\].
[1] Burger, R. G. and Dybvig, R. K. 1996. Printing floating-point numbers
\[1\] Burger, R. G. and Dybvig, R. K. 1996. Printing floating-point numbers
quickly and accurately. SIGPLAN Not. 31, 5 (May. 1996), 108-116.
*/

View File

@ -9,10 +9,10 @@
// except according to those terms.
/*!
Rust adaptation of Grisu3 algorithm described in [1]. It uses about
Rust adaptation of Grisu3 algorithm described in \[1\]. It uses about
1KB of precomputed table, and in turn, it's very quick for most inputs.
[1] Florian Loitsch. 2010. Printing floating-point numbers quickly and
\[1\] Florian Loitsch. 2010. Printing floating-point numbers quickly and
accurately with integers. SIGPLAN Not. 45, 6 (June 2010), 233-243.
*/