src/hotspot/share/gc/z/zForwardingTable.cpp
changeset 50875 2217b2fc29ea
parent 50525 767cdb97f103
child 52799 cd19c580ba9c
--- a/src/hotspot/share/gc/z/zForwardingTable.cpp	Thu Jun 28 10:09:58 2018 +0000
+++ b/src/hotspot/share/gc/z/zForwardingTable.cpp	Thu Jun 28 12:14:37 2018 +0200
@@ -34,7 +34,7 @@
   // Allocate table for linear probing. The size of the table must be
   // a power of two to allow for quick and inexpensive indexing/masking.
   // The table is sized to have a load factor of 50%, i.e. sized to have
-  // double the number of entries actuallly inserted.
+  // double the number of entries actually inserted.
   _size = ZUtils::round_up_power_of_2(live_objects * 2);
   _table = MallocArrayAllocator<ZForwardingTableEntry>::allocate(_size, mtGC);