diff --git a/README.md b/README.md index 7e184d2..5162c31 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 Rust panics on common `Result`-like usecases. See the [benchmark](benches/bench.rs). +Under the default configuration, 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 a47e187..894837f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! 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 Rust panics on common +//! 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). //!