Skip to content

Commit

Permalink
fix formatter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kimburgess committed Mar 22, 2019
1 parent 9ab46af commit 5cce368
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ish/count_min_sketch.cr
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ require "./lib/matrix"
# OPTIMIZE: support parallel hashing / increment / count operations when
# supported by Crystal
class Ish::CountMinSketch
@sketch : Matrix(UInt32)
@seeds : Array({UInt32, UInt32})
@sketch : Matrix(UInt32)
@seeds : Array({UInt32, UInt32})

private macro assert_unit_interval(value)
if {{value}} <= 0 || {{value}} >= 1
Expand Down

0 comments on commit 5cce368

Please sign in to comment.