diff --git a/CHANGELOG.md b/CHANGELOG.md index 020e40e..dc8ad48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ ### Feature Enhancements - [FEATURE](https://github.com/boa-dev/ryu-js/pull/35): - ECMAScript specification complaint `Number.prototype.toFixed()` implementation. (@HalidOdat) + ECMAScript specification compliant `Number.prototype.toFixed()` implementation. (@HalidOdat) ### Internal Improvements diff --git a/Cargo.toml b/Cargo.toml index ee05241..0deaf11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ryu-js" -version = "1.0.0" # don't forget to update html_root_url +version = "1.0.0" authors = ["David Tolnay ", "boa-dev"] categories = ["value-formatting", "no-std"] description = "Fast floating point to string conversion, ECMAScript compliant." diff --git a/src/lib.rs b/src/lib.rs index aab20fd..261195e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -53,7 +53,6 @@ //! notation. #![no_std] -#![doc(html_root_url = "https://docs.rs/ryu-js/1.0.0")] #![allow( clippy::cast_lossless, clippy::cast_possible_truncation,