Skip to content

Commit

Permalink
Rework first example title (#92)
Browse files Browse the repository at this point in the history
* Rework first example title

* newline
  • Loading branch information
JSorngard authored Dec 2, 2024
1 parent 6dc660d commit 70931ce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
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

0 comments on commit 70931ce

Please sign in to comment.