Skip to content

Commit 11c1980

Browse files
committed
Run swift-format
1 parent d1e6aa5 commit 11c1980

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CodeGeneration/Sources/generate-swiftsyntax/templates/swiftparser/ParserEntryFile.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ let parserEntryFile = SourceFileSyntax(leadingTrivia: generateCopyrightHeader(fo
7575
"""
7676
)
7777
} else {
78-
DeclSyntax(
78+
DeclSyntax(
7979
"""
8080
extension \(raw: node.name): SyntaxParseable {
8181
public static func parse(from parser: inout Parser) -> Self {

Sources/SwiftParser/generated/Parser+Entry.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ extension CodeBlockItemSyntax: SyntaxParseable {
7171
assertionFailure("Invalid code block item")
7272
return Syntax(raw: RawSyntax(parser.parseCodeBlockItem()!)).cast(Self.self)
7373
}
74-
let raw = RawSyntax(parser.parseRemainder(into:node))
74+
let raw = RawSyntax(parser.parseRemainder(into: node))
7575
return Syntax(raw: raw).cast(Self.self)
7676
}
7777
}

0 commit comments

Comments
 (0)