From f3d16d3fbde7d773450ff403f2cfd33bf1e99bd7 Mon Sep 17 00:00:00 2001 From: Anhad Singh Date: Fri, 23 Jan 2026 14:29:35 +1100 Subject: [PATCH] fix(pthread/tls): nit Signed-off-by: Anhad Singh --- src/header/pthread/tls.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/header/pthread/tls.rs b/src/header/pthread/tls.rs index 7da2882339..b4805834c0 100644 --- a/src/header/pthread/tls.rs +++ b/src/header/pthread/tls.rs @@ -122,8 +122,8 @@ pub(crate) unsafe fn run_all_destructors() { } // According to POSIX (issue 8): If even after - // [`PTHREAD_DESTRUCTOR_ITERATIONS`] there are still some non-NULL - // associated values with associated destructors, the behaviour is + // [`PTHREAD_DESTRUCTOR_ITERATIONS`] iterations there are still some + // non-NULL values with associated destructors, the behaviour is // implementation-defined. We can choose to stop calling them or continue // calling them until none are left. Both musl and glibc choose to stop // calling them so we do the same.