Skip to content

Commit c63bdad

Browse files
authored
count_primes_leq --> prime_pi
1 parent 210bda3 commit c63bdad

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
@@ -34,7 +34,7 @@ assert_eq!(CHECK_42, Some(false));
3434
assert_eq!(CHECK_541, Some(true));
3535

3636
// Prime counting
37-
const PRIMES_LEQ_100: Option<usize> = CACHE.count_primes_leq(100);
37+
const PRIMES_LEQ_100: Option<usize> = CACHE.prime_pi(100);
3838
assert_eq!(PRIMES_LEQ_100, Some(25));
3939

4040
// Prime factorization:

0 commit comments

Comments
 (0)