From 09ca711096f08e5827d0731f6913fa2ec60c2dd5 Mon Sep 17 00:00:00 2001 From: Chris Plummer Date: Wed, 3 Dec 2025 16:14:10 -0800 Subject: [PATCH] Fixed typo in comment --- src/jdk.jdwp.agent/share/native/libjdwp/threadControl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jdk.jdwp.agent/share/native/libjdwp/threadControl.c b/src/jdk.jdwp.agent/share/native/libjdwp/threadControl.c index 1b7e1b7307c..3a22b9cf1f5 100644 --- a/src/jdk.jdwp.agent/share/native/libjdwp/threadControl.c +++ b/src/jdk.jdwp.agent/share/native/libjdwp/threadControl.c @@ -1321,7 +1321,7 @@ commonResumeList(JNIEnv *env) node = nonTlsSearch(getEnv(), &runningVThreads, thread); if (node != NULL) { // This means the vthread has terminated already. This can only happen - // with vthreads since VIRTUAL_THREAD_END events might not be enable to + // with vthreads since VIRTUAL_THREAD_END events might not be enabled to // trigger removal of the ThreadNode when the thread exits. Just assert // that the thread is in the TERMINATED state. The ThreadNode will // eventually be removed by freeUnusedVThreadNodes().