diff --git a/src/lib.rs b/src/lib.rs index 9a2ee26..22491a4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,6 @@ -//! A crate for generating and working with prime numbers in const contexts. -//! This lets you for example pre-compute prime numbers at compile time and store them in the binary and use them later for related computations, +//! Generate and work with prime numbers in const contexts. +//! +//! This crate lets you for example pre-compute prime numbers at compile time, store them in the binary, and use them later for related computations, //! or check whether a number is prime in a const function. //! //! `#![no_std]` compatible, and currently supports Rust versions 1.67.1 or newer.