From c7da6283cc2a5a8b305fcad6902f63106dbb7a39 Mon Sep 17 00:00:00 2001 From: waffle Date: Mon, 26 May 2025 06:59:51 +0200 Subject: [PATCH] gpui: Fix typo in doc comment (#31397) Release Notes: - N/A --- crates/gpui/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/gpui/src/app.rs b/crates/gpui/src/app.rs index d5b55e4bdba0e376b1496434ac999c5904bd1977..780c7dc4144ad10832b89b573cc3941cd326a799 100644 --- a/crates/gpui/src/app.rs +++ b/crates/gpui/src/app.rs @@ -1665,7 +1665,7 @@ impl App { /// Removes an image from the sprite atlas on all windows. /// - /// If the current window is being updated, it will be removed from `App.windows``, you can use `current_window` to specify the current window. + /// If the current window is being updated, it will be removed from `App.windows`, you can use `current_window` to specify the current window. /// This is a no-op if the image is not in the sprite atlas. pub fn drop_image(&mut self, image: Arc, current_window: Option<&mut Window>) { // remove the texture from all other windows