File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1113,7 +1113,7 @@ LargeHeapBlock::ScanInitialImplicitRoots(Recycler * recycler)
1113
1113
size_t objectSize = header->objectSize ;
1114
1114
// trim off the trailing part which is not a pointer
1115
1115
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
1117
1117
{
1118
1118
recycler->ScanObjectInlineInterior ((void **)objectAddress, objectSize);
1119
1119
}
@@ -1170,7 +1170,7 @@ LargeHeapBlock::ScanNewImplicitRoots(Recycler * recycler)
1170
1170
size_t objectSize = header->objectSize ;
1171
1171
// trim off the trailing part which is not a pointer
1172
1172
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
1174
1174
{
1175
1175
recycler->ScanObjectInlineInterior ((void **)objectAddress, objectSize);
1176
1176
}
@@ -1321,7 +1321,7 @@ LargeHeapBlock::RescanOnePage(Recycler * recycler)
1321
1321
objectSize = HeapInfo::RoundObjectSize (objectSize);
1322
1322
}
1323
1323
#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
1325
1325
{
1326
1326
bool noOOMDuringMark = true ;
1327
1327
#ifdef RECYCLER_VISITED_HOST
You can’t perform that action at this time.
0 commit comments