comparison src/share/vm/gc_implementation/g1/g1BlockOffsetTable.cpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents de6a9e811145
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
446 return ub; 446 return ub;
447 } 447 }
448 448
449 // Otherwise, find the block start using the table, but taking 449 // Otherwise, find the block start using the table, but taking
450 // care (cf block_start_unsafe() above) not to parse any objects/blocks 450 // care (cf block_start_unsafe() above) not to parse any objects/blocks
451 // on the cards themsleves. 451 // on the cards themselves.
452 size_t index = _array->index_for(addr); 452 size_t index = _array->index_for(addr);
453 assert(_array->address_for_index(index) == addr, 453 assert(_array->address_for_index(index) == addr,
454 "arg should be start of card"); 454 "arg should be start of card");
455 455
456 HeapWord* q = (HeapWord*)addr; 456 HeapWord* q = (HeapWord*)addr;