Skip to content

Commit 79630d3

Browse files
otherwize -> otherwise
1 parent 792d774 commit 79630d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/Common/Memory/LargeHeapBlock.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,7 +1113,7 @@ LargeHeapBlock::ScanInitialImplicitRoots(Recycler * recycler)
11131113
size_t objectSize = header->objectSize;
11141114
// trim off the trailing part which is not a pointer
11151115
objectSize = HeapInfo::RoundObjectSize(objectSize);
1116-
if (objectSize > 0) // otherwize the object total size is less than a pointer size
1116+
if (objectSize > 0) // otherwise the object total size is less than a pointer size
11171117
{
11181118
recycler->ScanObjectInlineInterior((void **)objectAddress, objectSize);
11191119
}
@@ -1170,7 +1170,7 @@ LargeHeapBlock::ScanNewImplicitRoots(Recycler * recycler)
11701170
size_t objectSize = header->objectSize;
11711171
// trim off the trailing part which is not a pointer
11721172
objectSize = HeapInfo::RoundObjectSize(objectSize);
1173-
if (objectSize > 0) // otherwize the object total size is less than a pointer size
1173+
if (objectSize > 0) // otherwise the object total size is less than a pointer size
11741174
{
11751175
recycler->ScanObjectInlineInterior((void **)objectAddress, objectSize);
11761176
}
@@ -1321,7 +1321,7 @@ LargeHeapBlock::RescanOnePage(Recycler * recycler)
13211321
objectSize = HeapInfo::RoundObjectSize(objectSize);
13221322
}
13231323
#endif
1324-
if (objectSize > 0) // otherwize the object total size is less than a pointer size
1324+
if (objectSize > 0) // otherwise the object total size is less than a pointer size
13251325
{
13261326
bool noOOMDuringMark = true;
13271327
#ifdef RECYCLER_VISITED_HOST

0 commit comments

Comments
 (0)