Skip to content

Commit

Permalink
Fix obious wrong boolean expression (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
quaasi authored Nov 13, 2023
1 parent b975b95 commit c9d060f
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 c9d060f

Please sign in to comment.