diff src/share/vm/memory/binaryTreeDictionary.cpp @ 14358:e5d78f318aec

8026849: Fix typos in the GC code, part 2 Summary: Fixed typos in assert messages, flag descriptions and verbose messages Reviewed-by: stefank, tschatzl
author jwilhelm
date Tue, 10 Dec 2013 15:11:02 +0100
parents 63a4eb8bcd23
children aa8fab3bed11
line wrap: on
line diff
--- a/src/share/vm/memory/binaryTreeDictionary.cpp	Mon Feb 10 12:58:09 2014 +0100
+++ b/src/share/vm/memory/binaryTreeDictionary.cpp	Tue Dec 10 15:11:02 2013 +0100
@@ -1352,7 +1352,7 @@
 template <class Chunk_t, template <class> class FreeList_t>
 void BinaryTreeDictionary<Chunk_t, FreeList_t>::verify_tree() const {
   guarantee(root() == NULL || total_free_blocks() == 0 ||
-    total_size() != 0, "_total_size should't be 0?");
+    total_size() != 0, "_total_size shouldn't be 0?");
   guarantee(root() == NULL || root()->parent() == NULL, "_root shouldn't have parent");
   verify_tree_helper(root());
 }