From fbab71a0c524bce74889f0f2754e9a2e25cb9931 Mon Sep 17 00:00:00 2001 From: Max Heller Date: Sun, 12 Nov 2023 09:19:47 -0500 Subject: [PATCH] Code review suggestion Co-authored-by: Ralf Jung --- src/concurrency/thread.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/concurrency/thread.rs b/src/concurrency/thread.rs index 5a39c92954..dc739a5fb3 100644 --- a/src/concurrency/thread.rs +++ b/src/concurrency/thread.rs @@ -1100,6 +1100,6 @@ pub enum TerminatedThreadTls { /// Deallocate backing memory of thread-local statics as usual Deallocate, /// Skip deallocating backing memory of thread-local statics and consider all memory reachable - /// from them as not leaked (like global `static`s). + /// from them as "allowed to leak" (like global `static`s). Leak, }