Fix misspelling (#21640)
authorMatt Galbraith <MattGal@users.noreply.github.com>
Fri, 4 Jan 2019 23:38:40 +0000 (15:38 -0800)
committerJan Kotas <jkotas@microsoft.com>
Fri, 4 Jan 2019 23:38:40 +0000 (15:38 -0800)
src/debug/ee/funceval.cpp

index 5fcd373..eef8ced 100644 (file)
@@ -1784,7 +1784,7 @@ void GatherFuncEvalArgInfo(DebuggerEval *pDE,
         //
         bool fNeedBoxOrUnbox = ((argSigType == ELEMENT_TYPE_CLASS) && (pFEAD->argElementType == ELEMENT_TYPE_VALUETYPE)) ||
             (((argSigType == ELEMENT_TYPE_VALUETYPE) && ((pFEAD->argElementType == ELEMENT_TYPE_CLASS) || (pFEAD->argElementType == ELEMENT_TYPE_OBJECT))) ||
-            // This is when method signature is expecting a BYREF ValueType, yet we recieve the boxed valuetype's handle.
+            // This is when method signature is expecting a BYREF ValueType, yet we receive the boxed valuetype's handle.
             (pFEAD->argElementType == ELEMENT_TYPE_CLASS && argSigType == ELEMENT_TYPE_BYREF && byrefArgSigType == ELEMENT_TYPE_VALUETYPE));
 
         pFEArgInfo[currArgIndex].argSigType = argSigType;