Skip to content

Commit

Permalink
that can --> and it can
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed May 29, 2024
1 parent 3bb59a3 commit 5140dcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const PRIMES: Primes<10> = Primes::new();
assert_eq!(PRIMES[5], 13);
assert_eq!(PRIMES, [2, 3, 5, 7, 11, 13, 17, 19, 23, 29]);
```
that can be used as a cache of primes for related computations:
and it can be used as a cache of primes for related computations:
```rust
const CACHE: Primes<100> = Primes::new();

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
//! assert_eq!(PRIMES[5], 13);
//! assert_eq!(PRIMES, [2, 3, 5, 7, 11, 13, 17, 19, 23, 29]);
//! ```
//! that can be used as a cache of primes for related computations:
//! and it can be used as a cache of primes for related computations:
//! ```
//! # use const_primes::Primes;
//! const CACHE: Primes<100> = Primes::new();
Expand Down

0 comments on commit 5140dcd

Please sign in to comment.