From 6f4bb8e451d7a208a68a2b5c3ca061e7a0900c56 Mon Sep 17 00:00:00 2001 From: acceptacross Date: Mon, 11 Mar 2024 17:46:13 +0800 Subject: [PATCH] chore: remove repetitive word Signed-off-by: acceptacross --- rayon-core/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rayon-core/src/lib.rs b/rayon-core/src/lib.rs index 418ec1636..03456b3ee 100644 --- a/rayon-core/src/lib.rs +++ b/rayon-core/src/lib.rs @@ -228,7 +228,7 @@ type PanicHandler = dyn Fn(Box) + Send + Sync; type StartHandler = dyn Fn(usize) + Send + Sync; /// The type for a closure that gets invoked when a thread exits. The -/// closure is passed the index of the thread on which is is invoked. +/// closure is passed the index of the thread on which it is invoked. /// Note that this same closure may be invoked multiple times in parallel. type ExitHandler = dyn Fn(usize) + Send + Sync;