Skip to content

Commit 72da4c7

Browse files
authored
Merge pull request #60327 from eltociear/patch-37
[SILGen] Fix typo in SILGenStmt.cpp
2 parents 7b81953 + d82d26b commit 72da4c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SILGen/SILGenStmt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ void SILGenFunction::eraseBasicBlock(SILBasicBlock *block) {
126126
void SILGenFunction::mergeCleanupBlocks() {
127127
for (auto bbPos = F.begin(), bbEnd = F.end(), nextPos = bbPos; bbPos != bbEnd;
128128
bbPos = nextPos) {
129-
// A forward iterator refering to the next unprocessed block in the block
129+
// A forward iterator referring to the next unprocessed block in the block
130130
// list. If blocks are merged and moved, then this will be updated.
131131
nextPos = std::next(bbPos);
132132

0 commit comments

Comments
 (0)