From 3532045fd6910536e9e2dcf0c6ddd5865371db34 Mon Sep 17 00:00:00 2001 From: Yannik Marchand Date: Mon, 8 Sep 2025 11:13:56 +0200 Subject: [PATCH] Fix typo (currunt -> current) --- qiling/os/thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qiling/os/thread.py b/qiling/os/thread.py index dc1ccfa20..c0e8749b9 100644 --- a/qiling/os/thread.py +++ b/qiling/os/thread.py @@ -22,7 +22,7 @@ def __str__(self) -> str: # the common functions which are used in qiling core. # these functions must be implemented in child class. -# like pthread_self(), return the id of currunt thread. +# like pthread_self(), return the id of current thread. # @abstractmethod def get_id(self): pass