Fix extra space before member access

This commit is contained in:
JP Simard 2023-04-13 15:12:37 -04:00
parent e361e14c90
commit 5226725689
No known key found for this signature in database
GPG Key ID: 184C3F2916202C58
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ private extension OverrideInExtensionRule {
override func visitPost(_ node: VariableDeclSyntax) {
if node.modifiers.containsOverride {
violations.append(node.bindingKeyword .positionAfterSkippingLeadingTrivia)
violations.append(node.bindingKeyword.positionAfterSkippingLeadingTrivia)
}
}