Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmcgarvey committed Sep 18, 2020
1 parent 8801c5d commit 1150dcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/avram/where.cr
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module Avram::Where
abstract def prepare(placeholder_supplier : Proc(String)) : String

def ==(other : Condition)
prepare(->{"unused"}) == other.prepare(->{"unused"})
prepare(->{ "unused" }) == other.prepare(->{ "unused" })
end

def ==(other)
Expand Down Expand Up @@ -36,7 +36,7 @@ module Avram::Where
end

def ==(other : ValueHoldingSqlClause)
(prepare(->{"unused"}) + value.to_s) == (other.prepare(->{"unused"}) + other.value.to_s)
(prepare(->{ "unused" }) + value.to_s) == (other.prepare(->{ "unused" }) + other.value.to_s)
end

def ==(other : Condition)
Expand Down

0 comments on commit 1150dcf

Please sign in to comment.