Browse Source

Updated a comment

dstromberg 14 years ago
parent
commit
d7667bb48a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      bloom_filter_mod.py

+ 2 - 1
bloom_filter_mod.py

@@ -4,7 +4,8 @@
 # Shamelessly borrowed (under MIT license) from http://code.activestate.com/recipes/577686-bloom-filter/
 # About Bloom Filters: http://en.wikipedia.org/wiki/Bloom_filter
 
-# Tweaked a bit by Daniel Richard Stromberg, mostly to make it pass pylint
+# Tweaked a bit by Daniel Richard Stromberg, mostly to make it pass pylint and give it a little nicer
+# __init__ parameters.
 
 import math
 import array