From f2c03d0d0a388e64b1c342d420906b1c585bc8dc Mon Sep 17 00:00:00 2001 From: Xiaobo Liu Date: Wed, 29 Oct 2025 18:53:52 +0800 Subject: [PATCH] gpui: Fix typo in `ForegroundExecutor` documentation (#41446) Release Notes: - N/A Signed-off-by: Xiaobo Liu --- crates/gpui/src/executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/gpui/src/executor.rs b/crates/gpui/src/executor.rs index ecb3f296c88bdacbac716ff6eae8c3e77701c5ce..644bee6b8d6cc2de6bd2c698d0fe170b8e8c2f56 100644 --- a/crates/gpui/src/executor.rs +++ b/crates/gpui/src/executor.rs @@ -38,7 +38,7 @@ pub struct BackgroundExecutor { /// This is intentionally `!Send` via the `not_send` marker field. This is because /// `ForegroundExecutor::spawn` does not require `Send` but checks at runtime that the future is /// only polled from the same thread it was spawned from. These checks would fail when spawning -/// foreground tasks from from background threads. +/// foreground tasks from background threads. #[derive(Clone)] pub struct ForegroundExecutor { #[doc(hidden)]