From ad1f4c18cbac845e7da162ab2bc99745e26fb18b Mon Sep 17 00:00:00 2001 From: Marc Chevalier Date: Thu, 30 Jul 2026 15:25:50 +0200 Subject: [PATCH] Typo --- src/hotspot/share/code/nmethod.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotspot/share/code/nmethod.hpp b/src/hotspot/share/code/nmethod.hpp index ce8fc4a2747..8a06037a161 100644 --- a/src/hotspot/share/code/nmethod.hpp +++ b/src/hotspot/share/code/nmethod.hpp @@ -286,7 +286,7 @@ public: // Used by shared scope closure (scopedMemoryAccess.cpp) bool has_scoped_access() const { return (_bits & SCOPED_ACCESS) != 0; } - // Stack has been extended and needs reair. See comment in MacroAssembler::remove_frame + // Stack has been extended and needs repair. See comment in MacroAssembler::remove_frame bool needs_stack_repair() const { return (_bits & NEEDS_STACK_REPAIR) != 0; } };