diff options
author | Matt Galbraith <MattGal@users.noreply.github.com> | 2019-01-04 15:38:40 -0800 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2019-01-04 15:38:40 -0800 |
commit | 83bd6ca494971c399b3fbebee4623d9bf294731d (patch) | |
tree | 407c80dfef3da4e9192beba147b9f9cbcfcd6ec3 /src/debug/ee | |
parent | 6e986f5ed76701109f83d50df1da53ddb23624ab (diff) | |
download | coreclr-83bd6ca494971c399b3fbebee4623d9bf294731d.tar.gz coreclr-83bd6ca494971c399b3fbebee4623d9bf294731d.tar.bz2 coreclr-83bd6ca494971c399b3fbebee4623d9bf294731d.zip |
Fix misspelling (#21640)
Diffstat (limited to 'src/debug/ee')
-rw-r--r-- | src/debug/ee/funceval.cpp | 2 |
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; |