Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework first example title #92

Merged
merged 2 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ This file contains the changes to the crate since version 0.4.8.

## 0.9.8

- Make links to crates in the docs on docs.rs link to the docs of those crates on docs.rs.
- Make links to crates in the docs on docs.rs link to the docs of those crates
on docs.rs.

## 0.9.7

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ or check whether a number is prime in a const function.
This version of the crate supports Rust versions 1.81.0 and up,
while versions 0.8.7 and older support Rust versions 1.67.1 and up.

## Example: generate primes at compile time and use them for related computations
## Example: generate primes at compile time and use them later for related computations

The struct `Primes` is a wrapper around an array of primes generated by a
[segmented sieve of Eratosthenes](https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes#Segmented_sieve)
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//!
//! This version of the crate supports Rust versions 1.81.0 and up, while versions 0.8.7 and older support Rust versions 1.67.1 and up.
//!
//! # Example: generate primes at compile time and reuse it for related computations
//! # Example: generate primes at compile time and use them later for related computations
//!
//! The struct [`Primes`] is a wrapper around an array of primes generated by a
//! [segmented sieve of Eratosthenes](https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes#Segmented_sieve)
Expand Down
Loading