summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatt Galbraith <MattGal@users.noreply.github.com>2019-01-04 15:38:40 -0800
committerJan Kotas <jkotas@microsoft.com>2019-01-04 15:38:40 -0800
commit83bd6ca494971c399b3fbebee4623d9bf294731d (patch)
tree407c80dfef3da4e9192beba147b9f9cbcfcd6ec3 /src
parent6e986f5ed76701109f83d50df1da53ddb23624ab (diff)
downloadcoreclr-83bd6ca494971c399b3fbebee4623d9bf294731d.tar.gz
coreclr-83bd6ca494971c399b3fbebee4623d9bf294731d.tar.bz2
coreclr-83bd6ca494971c399b3fbebee4623d9bf294731d.zip
Fix misspelling (#21640)
Diffstat (limited to 'src')
-rw-r--r--src/debug/ee/funceval.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/ee/funceval.cpp b/src/debug/ee/funceval.cpp
index 5fcd37315f..eef8ced59f 100644
--- a/src/debug/ee/funceval.cpp
+++ b/src/debug/ee/funceval.cpp
@@ -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;