Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard authored May 7, 2024
1 parent 6f6fdbc commit cd0aafd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ assert_eq!(PRIME_STATUS, [false, false, true, true, false, true, false, true, fa
## Arbitrary ranges
The crate provides prime generation and sieving functions with suffixes, e.g. `primes_geq` and `sieve_lt`
that can be used to work with ranges that don't start at zero. They take two generics: the number of elements
to store in the binary and the size of the sieve used during evaluation. The sieve size must be the cieling
to store in the binary and the size of the sieve used during evaluation. The sieve size must be the ceiling
of the square root of the largest encountered value:
```rust
// ceil(sqrt(5_000_000_063)) = 70_711
Expand Down

0 comments on commit cd0aafd

Please sign in to comment.