Skip to content

Commit

Permalink
Merge pull request #1368 from SiarheiFedartsou/colon_configuration_eq…
Browse files Browse the repository at this point in the history
…uals_operator_fix

Fix `==` operator in ColonConfiguration
  • Loading branch information
marcelofabri authored Mar 19, 2017
2 parents 1fb8583 + e6c718b commit 843b838
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ public struct ColonConfiguration: RuleConfiguration, Equatable {
rhs: ColonConfiguration) -> Bool {
return lhs.severityConfiguration == rhs.severityConfiguration &&
lhs.flexibleRightSpacing == rhs.flexibleRightSpacing &&
rhs.applyToDictionaries == rhs.applyToDictionaries
lhs.applyToDictionaries == rhs.applyToDictionaries
}
}

0 comments on commit 843b838

Please sign in to comment.