Skip to content

Commit 99c7d9f

Browse files
authored
Fix lint
1 parent 8642a36 commit 99c7d9f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/sass/value/number.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,12 @@ def ==(other)
8888
end
8989

9090
FuzzyMath.equals(
91-
(value *
91+
value *
9292
Unit.canonical_multiplier(numerator_units) /
93-
Unit.canonical_multiplier(denominator_units)),
94-
(other.value *
93+
Unit.canonical_multiplier(denominator_units),
94+
other.value *
9595
Unit.canonical_multiplier(other.numerator_units) /
96-
Unit.canonical_multiplier(other.denominator_units))
96+
Unit.canonical_multiplier(other.denominator_units)
9797
)
9898
end
9999

0 commit comments

Comments
 (0)