Skip to content

Commit

Permalink
docs: Fix 404 in README.md, bloomfilter.go (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
rasa authored Jun 18, 2024
1 parent 66301c2 commit 9494f0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Blobloom
A Bloom filter package for Go (golang) with no compile-time dependencies.

This package implements a version of Bloom filters called [blocked Bloom filters](
https://algo2.iti.kit.edu/documents/cacheefficientbloomfilters-jea.pdf),
https://www.cs.amherst.edu/~ccmcgeoch/cs34/papers/cacheefficientbloomfilters-jea.pdf),
which get a speed boost from using the CPU cache more efficiently
than regular Bloom filters.

Expand Down
2 changes: 1 addition & 1 deletion bloomfilter.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
// is double that of standard Bloom filter.
//
// For more details, see the 2010 paper by Putze, Sanders and Singler,
// https://algo2.iti.kit.edu/documents/cacheefficientbloomfilters-jea.pdf.
// https://www.cs.amherst.edu/~ccmcgeoch/cs34/papers/cacheefficientbloomfilters-jea.pdf.
package blobloom

import "math"
Expand Down

0 comments on commit 9494f0c

Please sign in to comment.