From 148a9625a3abb80d53ba23bd111a3a949638a92e Mon Sep 17 00:00:00 2001 From: Jonathan Behrens Date: Mon, 29 Oct 2018 23:24:16 -0400 Subject: [PATCH] Discuss thread::scoped API in past tense --- src/leaking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/leaking.md b/src/leaking.md index 38b70b8..3b04e28 100644 --- a/src/leaking.md +++ b/src/leaking.md @@ -182,7 +182,7 @@ horribly degenerate. Also *oh my gosh* it's such a ridiculous corner case. ## thread::scoped::JoinGuard -The thread::scoped API intends to allow threads to be spawned that reference +The thread::scoped API intended to allow threads to be spawned that reference data on their parent's stack without any synchronization over that data by ensuring the parent joins the thread before any of the shared data goes out of scope.