Skip to content

Commit 0779918

Browse files
committed
fix typo in javadoc
1 parent 88e5e26 commit 0779918

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/de/tilman_neumann/jml/primes/bounds/NthPrimeUpperBoundsTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ private void run(long limit) {
4141
}
4242

4343
/**
44-
* Fallback method: Receives new primes from the sieve and checks the upper bound estimates for the n.th prime p(n).
44+
* Callback method: Receives new primes from the sieve and checks the upper bound estimates for the n.th prime p(n).
4545
*
4646
* Changing the mod we can regulate the resolution of the data to look at.
4747
* Searching in the results for something like "rs01=-" lets us investigate in which ranges the particular algorithms work.

src/main/java/de/tilman_neumann/jml/primes/bounds/PrimeCountUpperBoundsTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ private void run(long limit) {
4141
}
4242

4343
/**
44-
* Fallback method: Receives new primes from the sieve and checks the upper bound estimates for the prime count function.
44+
* Callback method: Receives new primes from the sieve and checks the upper bound estimates for the prime count function.
4545
*
4646
* Changing the mod we can regulate the resolution of the data to look at.
4747
* Searching in the results for something like "du65=-" lets us investigate in which ranges the particular algorithms work.

0 commit comments

Comments
 (0)