Skip to content

Commit afc1ae4

Browse files
committed
Update README.md
1 parent 567cfc6 commit afc1ae4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Ryū-js
22

3-
Ryū-js is a fork of the [ryu][ryu-crate] crate adjusted to comply to the ECMAScript [number-to-string][number-to-string] algorithm.
3+
Ryū-js is a fork of the [ryu][ryu-crate] crate adjusted to comply to the ECMAScript [number-to-string][number-to-string] algorithm, also implementing [`Number.prototype.toFixed()`][number-to-fixed] compliant conversion.
44

55
[ryu-crate]: https://crates.io/crates/ryu
66
[number-to-string]: https://tc39.es/ecma262/#sec-numeric-types-number-tostring
7+
[number-to-fixed]: https://tc39.es/ecma262/#sec-number.prototype.tofixed
78

89
Pure Rust implementation of Ryū, an algorithm to quickly convert floating point
910
numbers to decimal strings.
@@ -23,7 +24,7 @@ uses nothing from the Rust standard library so is usable from no_std crates.*
2324

2425
```toml
2526
[dependencies]
26-
ryu-js = "0.2"
27+
ryu-js = "1.0"
2728
```
2829

2930
<br>
@@ -38,8 +39,6 @@ fn main() {
3839
}
3940
```
4041

41-
<br>
42-
4342
## Performance
4443

4544
<!--

0 commit comments

Comments
 (0)