Skip to content

Commit

Permalink
Fix errors in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
gakhov committed Oct 10, 2019
1 parent 836a67f commit 3d7120b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/membership/bloom_filter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ with the requested error.
from pdsa.membership.bloom_filter import BloomFilter
bf = BloomFilter().create_from_capacity(10000, 0.02)
bf = BloomFilter.create_from_capacity(10000, 0.02)
Add element into the filter
Expand Down
2 changes: 1 addition & 1 deletion docs/membership/counting_bloom_filter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ with the requested error.
from pdsa.membership.counting_bloom_filter import CountingBloomFilter
bf = CountingBloomFilter().create_from_capacity(10000, 0.02)
bf = CountingBloomFilter.create_from_capacity(10000, 0.02)
Add element into the filter
Expand Down

0 comments on commit 3d7120b

Please sign in to comment.