Skip to content

Commit 09dcf74

Browse files
committed
Fix formatting.
1 parent b30dedf commit 09dcf74

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Sources/SwiftParser/Expressions.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,8 @@ extension Parser {
516516
// 'repeat' is the start of a pack expansion expression.
517517
if (self.at(.repeatKeyword)) {
518518
return RawExprSyntax(
519-
parsePackExpansionExpr(flavor, pattern: pattern))
519+
parsePackExpansionExpr(flavor, pattern: pattern)
520+
)
520521
}
521522

522523
switch self.at(anyIn: ExpressionPrefixOperator.self) {
@@ -1389,7 +1390,8 @@ extension Parser {
13891390
return RawPackExpansionExprSyntax(
13901391
repeatKeyword: repeatKeyword,
13911392
patternExpr: patternExpr,
1392-
arena: self.arena)
1393+
arena: self.arena
1394+
)
13931395
}
13941396
}
13951397

0 commit comments

Comments
 (0)