Skip to content

Commit

Permalink
Fix obious wrong boolean expression (hotwired#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
quaasi authored and pklatka committed Feb 23, 2024
1 parent 3967d5f commit c566617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Path Configuration/PathConfiguration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public final class PathConfiguration {

extension PathConfiguration: Equatable {
public static func == (lhs: PathConfiguration, rhs: PathConfiguration) -> Bool {
lhs.settings == lhs.settings && lhs.rules == rhs.rules
lhs.settings == rhs.settings && lhs.rules == rhs.rules
}
}

Expand Down

0 comments on commit c566617

Please sign in to comment.