Skip to content

Commit ffeeeed

Browse files
committed
fix: javadoc #7
1 parent a418d17 commit ffeeeed

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Language: [简体中文](./docs/README.zh_cn.md)
1818
- [requirements](#requirements)
1919
- [install](#install)
2020
- [Rust](#rust)
21+
- [Java](#java)
2122
- [Examples](#examples)
2223
- [BloomFilter](#bloomfilter)
2324
- [Python](#python-1)
@@ -58,6 +59,16 @@ pip install fastbloom-rs
5859
fastbloom-rs = "{latest}"
5960
```
6061

62+
## Java
63+
maven
64+
```xml
65+
<dependency>
66+
<groupId>io.github.yankun1992</groupId>
67+
<artifactId>fastbloom</artifactId>
68+
<version>{latest-version}</version>
69+
</dependency>
70+
```
71+
6172
# Examples
6273

6374
## BloomFilter

docs/README.zh_cn.md

+11
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Language: [English](../README.md)
1717
- [requirements](#requirements)
1818
- [install](#install)
1919
- [Rust](#rust)
20+
- [Java](#java)
2021
- [例子](#examples)
2122
- [BloomFilter](#bloomfilter)
2223
- [Python](#python-1)
@@ -57,6 +58,16 @@ pip install fastbloom-rs
5758
fastbloom-rs = "{latest}"
5859
```
5960

61+
## Java
62+
maven
63+
```xml
64+
<dependency>
65+
<groupId>io.github.yankun1992</groupId>
66+
<artifactId>fastbloom</artifactId>
67+
<version>{latest-version}</version>
68+
</dependency>
69+
```
70+
6071
# Examples
6172

6273
## BloomFilter

fastbloomjvm/src/io/github/yankun1992/bloom/CountingBloomFilter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* A Counting Bloom filter works in a similar manner as a regular Bloom filter; however, it is able to keep track of
2626
* insertions and deletions. In a counting Bloom filter, each entry in the Bloom filter is a small counter associated
2727
* with a basic Bloom filter bit.
28-
* <br/>
28+
*
2929
* <b>Reference</b>: F. Bonomi, M. Mitzenmacher, R. Panigrahy, S. Singh, and G. Varghese, "An Improved Construction
3030
* for Counting Bloom Filters," in 14th Annual European Symposium on Algorithms, LNCS 4168, 2006
3131
*/

0 commit comments

Comments
 (0)