Skip to content

Commit 9fcecbe

Browse files
committed
fix typo
1 parent b2cbb47 commit 9fcecbe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/datasketches/cpc/CpcSketch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ public String toString(final boolean detail) {
727727
final double errConst = mergeFlag ? log(2) : sqrt(log(2) / 2.0);
728728
final double rse = errConst / Math.sqrt(1 << lgK);
729729
final StringBuilder sb = new StringBuilder();
730-
sb.append("### CPD SKETCH - PREAMBLE:").append(LS);
730+
sb.append("### CPC SKETCH - PREAMBLE:").append(LS);
731731
sb.append(" Flavor : ").append(getFlavor()).append(LS);
732732
sb.append(" LgK : ").append(lgK).append(LS);
733733
sb.append(" Merge Flag : ").append(mergeFlag).append(LS);

0 commit comments

Comments
 (0)