Skip to content

Commit f506ae4

Browse files
committed
[Gardening] Fixed typo.
1 parent 1b0691f commit f506ae4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SILGen/SILGenDecl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ class LetValueInitialization : public Initialization {
835835
// If we have a no implicit copy lexical, emit the instruction stream so
836836
// that the move checker knows to check this variable.
837837
if (vd->isNoImplicitCopy()) {
838-
value = SGF.B.createMoveValue(PrologueLoc, value, /*IisLexical*/ true, /*hasPointerEscape=*/false, /*fromVarDecl=*/true);
838+
value = SGF.B.createMoveValue(PrologueLoc, value, /*isLexical*/ true, /*hasPointerEscape=*/false, /*fromVarDecl=*/true);
839839
value = SGF.B.createOwnedCopyableToMoveOnlyWrapperValue(PrologueLoc, value);
840840
return SGF.B.createMarkUnresolvedNonCopyableValueInst(
841841
PrologueLoc, value,

0 commit comments

Comments
 (0)