Skip to content

Commit 5a38444

Browse files
authored
Fix missing comma in description (realm#3588)
1 parent d712e77 commit 5a38444

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/SwiftLintFramework/Rules/RuleConfigurations/IndentationWidthConfiguration.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
public struct IndentationWidthConfiguration: RuleConfiguration, Equatable {
22
public var consoleDescription: String {
33
return "severity: \(severityConfiguration.consoleDescription), "
4-
+ "indentation_width: \(indentationWidth)"
4+
+ "indentation_width: \(indentationWidth), "
55
+ "include_comments: \(includeComments)"
66
}
77

0 commit comments

Comments
 (0)