Skip to content

Commit 38d430e

Browse files
authored
Update README.md
1 parent 38cfd7c commit 38d430e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ assert_eq!(PRIMES, [2, 3, 5, 7, 11, 13, 17, 19, 23, 29]);
2626

2727
## Example: use a cache of generated primes for related computations
2828

29-
The struct `Primes` is a wrapper around an array of primes and can be used as a cache of primes for related computations:
29+
The struct `Primes` is a wrapper around an array of primes and can be used as a cache of prime numbers for related computations:
3030
```rust
3131
// The first 100 primes
3232
const CACHE: Primes<100> = Primes::new();

0 commit comments

Comments
 (0)