We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8642a36 commit 99c7d9fCopy full SHA for 99c7d9f
lib/sass/value/number.rb
@@ -88,12 +88,12 @@ def ==(other)
88
end
89
90
FuzzyMath.equals(
91
- (value *
+ value *
92
Unit.canonical_multiplier(numerator_units) /
93
- Unit.canonical_multiplier(denominator_units)),
94
- (other.value *
+ Unit.canonical_multiplier(denominator_units),
+ other.value *
95
Unit.canonical_multiplier(other.numerator_units) /
96
- Unit.canonical_multiplier(other.denominator_units))
+ Unit.canonical_multiplier(other.denominator_units)
97
)
98
99
0 commit comments