diff --git a/README.md b/README.md index 5162c31..0cb1efc 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,6 @@ Lightweight exceptions. Lithium provides a custom exception mechanism as an alternative to Rust panics. Compared to Rust panics, this mechanism is allocation-free, avoids indirections and RTTI, and hence faster, if less applicable. -Under the default configuration, Lithium is more than 2x faster than Rust panics on common `Result`-like usecases. See the [benchmark](benches/bench.rs). +On nightly, Lithium is more than 2x faster than Rust panics on common `Result`-like usecases. See the [benchmark](benches/bench.rs). See [documentation](https://docs.rs/lithium) for usage and installation instructions. diff --git a/src/lib.rs b/src/lib.rs index 894837f..ecbd7fd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,9 +4,8 @@ //! panics, this mechanism is allocation-free, avoids indirections and RTTI, and hence faster, if //! less applicable. //! -//! Under the default configuration, Lithium is more than 2x faster than Rust panics on common -//! `Result`-like usecases. See the -//! [benchmark](https://github.com/iex-rs/lithium/blob/master/benches/bench.rs). +//! On nightly, Lithium is more than 2x faster than Rust panics on common `Result`-like usecases. +//! See the [benchmark](https://github.com/iex-rs/lithium/blob/master/benches/bench.rs). //! //! //! # Usage