From fe3bd7d70adcbf7b240e25753fc1d2ec5b477ba7 Mon Sep 17 00:00:00 2001 From: Joe Savage Date: Thu, 3 Dec 2015 23:10:42 +0000 Subject: [PATCH] minor typo fixes --- docs/ABI.rst | 2 +- lib/SILGen/SILGenDecl.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ABI.rst b/docs/ABI.rst index a87c41c9b7407..30f570f91dd32 100644 --- a/docs/ABI.rst +++ b/docs/ABI.rst @@ -992,7 +992,7 @@ mangled in to disambiguate. impl-callee-convention impl-function-attribute* generic-signature? '_' impl-parameter* '_' impl-result* '_' impl-callee-convention ::= 't' // thin - impl-callee-convention ::= impl-convention // thick, callee transfered with given convention + impl-callee-convention ::= impl-convention // thick, callee transferred with given convention impl-convention ::= 'a' // direct, autoreleased impl-convention ::= 'd' // direct, no ownership transfer impl-convention ::= 'D' // direct, no ownership transfer, diff --git a/lib/SILGen/SILGenDecl.cpp b/lib/SILGen/SILGenDecl.cpp index 075d89397cc8b..d6d9f789bb872 100644 --- a/lib/SILGen/SILGenDecl.cpp +++ b/lib/SILGen/SILGenDecl.cpp @@ -995,7 +995,7 @@ SILValue SILGenFunction::emitOSVersionRangeCheck(SILLocation loc, /// Emit the boolean test and/or pattern bindings indicated by the specified -/// stmt condition. If the condition fails, control flow is transfered to the +/// stmt condition. If the condition fails, control flow is transferred to the /// specified JumpDest. The insertion point is left in the block where the /// condition has matched and any bound variables are in scope. ///