fix comment

This commit is contained in:
Looly 2024-04-03 12:49:53 +08:00
parent acaf369244
commit 5317f3539d
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ public class BitSetBloomFilter implements BloomFilter {
private final int hashFunctionNumber;
/**
* 构造一个布隆过滤器过滤器的容量为c * n 个bit.
* 构造一个布隆过滤器过滤器的容量为c * k 个bit.
*
* @param c 当前过滤器预先开辟的最大包含记录,通常要比预计存入的记录多一倍.
* @param n 当前过滤器预计所要包含的记录.

View File

@ -9,7 +9,7 @@ package cn.hutool.bloomfilter;
public class BloomFilterUtil {
/**
* 创建一个BitSet实现的布隆过滤器过滤器的容量为c * n 个bit.
* 创建一个BitSet实现的布隆过滤器过滤器的容量为c * k 个bit.
*
* @param c 当前过滤器预先开辟的最大包含记录,通常要比预计存入的记录多一倍.
* @param n 当前过滤器预计所要包含的记录.