From 2be37aff687f8efecc2c6bb4244658c8b9e10132 Mon Sep 17 00:00:00 2001 From: Alisa Sireneva Date: Mon, 4 Nov 2024 12:53:30 +0300 Subject: [PATCH] Fix typo --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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). //!