mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
9 lines
236 B
Swift
9 lines
236 B
Swift
public struct Correction: Equatable {
|
|
public let ruleDescription: RuleDescription
|
|
public let location: Location
|
|
|
|
public var consoleDescription: String {
|
|
return "\(location) Corrected \(ruleDescription.name)"
|
|
}
|
|
}
|