# HG changeset patch # User aharlap # Date 1416495802 18000 # Node ID 3eee985a97e748a4e0ec16c7e8d962e3d5bb0228 # Parent 11c231c781dcc8beb06653237917dee26b148b7a 8059492: Wrong spelling in assert: "Not initialied properly?" Summary: Fixed typo in metaspace assert message Reviewed-by: mgerdin Contributed-by: aharlap diff -r 11c231c781dc -r 3eee985a97e7 hotspot/src/share/vm/memory/metaspace.cpp --- a/hotspot/src/share/vm/memory/metaspace.cpp Wed Nov 19 17:43:19 2014 +0300 +++ b/hotspot/src/share/vm/memory/metaspace.cpp Thu Nov 20 10:03:22 2014 -0500 @@ -1412,7 +1412,7 @@ size_t MetaspaceGC::capacity_until_GC() { size_t value = (size_t)OrderAccess::load_ptr_acquire(&_capacity_until_GC); - assert(value >= MetaspaceSize, "Not initialied properly?"); + assert(value >= MetaspaceSize, "Not initialized properly?"); return value; }