Skip to content

Commit 3a697ec

Browse files
authored
Merge pull request #5305 from practicalswift/gardening-20161015
2 parents 7b0b183 + 0e26aed commit 3a697ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/Parse/Parser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ Parser::parseList(tok RightK, SourceLoc LeftLoc, SourceLoc &RightLoc,
697697
break;
698698
}
699699
// If we're in a comma-separated list, the next token is at the
700-
// beginning of a new line and can never start a element, break.
700+
// beginning of a new line and can never start an element, break.
701701
if (SeparatorK == tok::comma && Tok.isAtStartOfLine() &&
702702
(Tok.is(tok::r_brace) || isStartOfDecl() || isStartOfStmt())) {
703703
break;

lib/SILOptimizer/Utils/PerformanceInlinerUtils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===----- PeformanceInlinerUtils.cpp - Peformance inliner utilities. -----===//
1+
//===--- PeformanceInlinerUtils.cpp - Peformance inliner utilities. -------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//
@@ -533,4 +533,4 @@ void ShortestPathAnalysis::Weight::updateBenefit(int &Benefit,
533533
// We don't accumulate the benefit instead we max it.
534534
if (newBenefit > Benefit)
535535
Benefit = newBenefit;
536-
}
536+
}

0 commit comments

Comments
 (0)