From 7cdf71292c1cfa7a2b9218c20ded36140bcfbc45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= <44257381+JSorngard@users.noreply.github.com> Date: Thu, 13 Jun 2024 11:04:29 +0200 Subject: [PATCH] Unify with README description (#47) * Unify with README description * Also make list commated --- src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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.