summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-06-19 17:40:14 -0700
committerJan Kotas <jkotas@microsoft.com>2015-06-19 17:40:14 -0700
commit2403caba11fa5a9dd3ba7b67acd1b7dd0505cc9c (patch)
tree99a4593f6e4e387fae66e9b129edb8e997ba6581
parent646bcd7b284bf1b3f5659cb3392316154c084b68 (diff)
parent0c57734306832f3cca5dacfe26729d67c063e4b9 (diff)
downloadcoreclr-2403caba11fa5a9dd3ba7b67acd1b7dd0505cc9c.tar.gz
coreclr-2403caba11fa5a9dd3ba7b67acd1b7dd0505cc9c.tar.bz2
coreclr-2403caba11fa5a9dd3ba7b67acd1b7dd0505cc9c.zip
Merge pull request #1156 from romansp/fix-typos
fix typo in objectnative.cpp comments
-rw-r--r--src/classlibnative/bcltype/objectnative.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classlibnative/bcltype/objectnative.cpp b/src/classlibnative/bcltype/objectnative.cpp
index 93b4931a52..011c568c83 100644
--- a/src/classlibnative/bcltype/objectnative.cpp
+++ b/src/classlibnative/bcltype/objectnative.cpp
@@ -183,7 +183,7 @@ FCIMPL2(FC_BOOL_RET, ObjectNative::Equals, Object *pThisRef, Object *pCompareRef
if (pThisMT != pCompareRef->GetMethodTable())
FC_RETURN_BOOL(FALSE);
- // Compare the contents (size - vtable - sink block index).
+ // Compare the contents (size - vtable - sync block index).
DWORD dwBaseSize = pThisRef->GetMethodTable()->GetBaseSize();
if(pThisRef->GetMethodTable() == g_pStringClass)
dwBaseSize -= sizeof(WCHAR);