We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0b0094 commit 64e8a12Copy full SHA for 64e8a12
1 file changed
src/main/java/org/apache/datasketches/common/Util.java
@@ -457,7 +457,7 @@ public static double invPow2(final int e) {
457
* int minP = 1;
458
* int ppo = 2;
459
*
460
- * for (int p = minP; p <= maxP; p = pwr2LawNext(ppo, p)) {
+ * for (int p = minP; p <= maxP; p = pwr2SeriesNext(ppo, p)) {
461
* System.out.print(p + " ");
462
* }
463
* //generates the following series:
@@ -488,7 +488,7 @@ public static long pwr2SeriesNext(final int ppo, final long curPoint) {
488
489
490
491
- * for (int p = maxP; p >= minP; p = pwr2LawPrev(ppo, p)) {
+ * for (int p = maxP; p >= minP; p = pwr2SeriesPrev(ppo, p)) {
492
493
494
0 commit comments