From ecd3d12a143ba6472b2293c69d376d2ec50756ca Mon Sep 17 00:00:00 2001 From: "Max Base (Seyyed Ali Mohammadiyeh)" Date: Tue, 13 May 2025 18:58:44 +0330 Subject: [PATCH] Fix typo mistake commmitted --- src/hotspot/share/memory/metaspace/metachunk.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotspot/share/memory/metaspace/metachunk.hpp b/src/hotspot/share/memory/metaspace/metachunk.hpp index 4f48346b78d..43494b43fa7 100644 --- a/src/hotspot/share/memory/metaspace/metachunk.hpp +++ b/src/hotspot/share/memory/metaspace/metachunk.hpp @@ -347,7 +347,7 @@ class Metachunk { return base() <= p && p < top(); } - // Returns true if given pointer points into the commmitted payload area of this chunk. + // Returns true if given pointer points into the committed payload area of this chunk. bool is_valid_committed_pointer(const MetaWord* p) const { return base() <= p && p < committed_top(); }