From 6e193942e1842d99dffb5c47d27dac8fab25e19d Mon Sep 17 00:00:00 2001 From: MaxOhn Date: Tue, 3 Dec 2024 18:09:36 +0100 Subject: [PATCH] doc: update readme --- README.md | 8 ++++---- src/lib.rs | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 65b426aa..0a2b4945 100644 --- a/README.md +++ b/README.md @@ -91,14 +91,14 @@ println!("PP: {}", attrs.pp()); ### Accuracy -`rosu-pp` was tested against all current beatmaps on multiple mod combinations and delivered +`rosu-pp` was tested against millions of real scores and delivered values that matched osu!lazer perfectly down to the last decimal place. However, there is one small caveat: the values are only this precise on debug mode. On release mode, Rust's compiler performs optimizations that produce the tiniest discrepancies -due to floating point inaccuracies which can cascade into larger differences in the end. -With this in mind, `rosu-pp` is still as accurate as can be without targeting the -.NET compiler itself. Realistically, the inaccuracies in release mode are negligibly small. +due to floating point inaccuracies. With this in mind, `rosu-pp` is still as accurate as can +be without targeting the .NET compiler itself. +Realistically, the inaccuracies in release mode are negligibly small. ### Speed diff --git a/src/lib.rs b/src/lib.rs index b7e76cf5..a96b655a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -87,14 +87,14 @@ //! //! ## Accuracy //! -//! `rosu-pp` was tested against all current beatmaps on multiple mod combinations and delivered +//! `rosu-pp` was tested against millions of real scores and delivered //! values that matched osu!lazer perfectly down to the last decimal place. //! //! However, there is one small caveat: the values are only this precise on debug mode. //! On release mode, Rust's compiler performs optimizations that produce the tiniest discrepancies -//! due to floating point inaccuracies which can cascade into larger differences in the end. -//! With this in mind, `rosu-pp` is still as accurate as can be without targeting the -//! .NET compiler itself. Realistically, the inaccuracies in release mode are negligibly small. +//! due to floating point inaccuracies. With this in mind, `rosu-pp` is still as accurate as can +//! be without targeting the .NET compiler itself. +//! Realistically, the inaccuracies in release mode are negligibly small. //! //! ## Speed //!