From a9fe108dbb22b631bc81d24335c72ed295056ef2 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 19 Dec 2023 16:21:58 -0500 Subject: [PATCH] Fix typo in "Quote Selection" tooltip (#3721) This PR fixes a typo in the "Quote Selection" tooltip. Release Notes: - N/A --- crates/assistant2/src/assistant_panel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/assistant2/src/assistant_panel.rs b/crates/assistant2/src/assistant_panel.rs index ec67d684da92fc85be4fcb5efecc040c783901ed..7b15619758679b5e9246780813de63f0f1371261 100644 --- a/crates/assistant2/src/assistant_panel.rs +++ b/crates/assistant2/src/assistant_panel.rs @@ -990,7 +990,7 @@ impl AssistantPanel { } })) .icon_size(IconSize::Small) - .tooltip(|cx| Tooltip::for_action("Quote Seleciton", &QuoteSelection, cx)) + .tooltip(|cx| Tooltip::for_action("Quote Selection", &QuoteSelection, cx)) } fn render_plus_button(cx: &mut ViewContext) -> impl IntoElement {