From 097640e7c5b81e3bad28b98fa81e99ae6c364439 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 19 Dec 2023 16:32:57 -0500 Subject: [PATCH] Fix typo in `ButtonCommon` doc comment (#3722) This PR fixes a small typo in the doc comments for `ButtonCommon`. Was waiting to roll this up into another PR, but it never ended up happening. Release Notes: - N/A --- crates/ui2/src/components/button/button_like.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ui2/src/components/button/button_like.rs b/crates/ui2/src/components/button/button_like.rs index bd4e9cd523d7d4f407f07e9cb501dc53e6f2aad7..19fa2b48a4c4768473df078c161873a55d488498 100644 --- a/crates/ui2/src/components/button/button_like.rs +++ b/crates/ui2/src/components/button/button_like.rs @@ -10,7 +10,7 @@ pub trait ButtonCommon: Clickable + Disableable { /// The visual style of the button. /// - /// Mosty commonly will be [`ButtonStyle::Subtle`], or [`ButtonStyle::Filled`] + /// Most commonly will be [`ButtonStyle::Subtle`], or [`ButtonStyle::Filled`] /// for an emphasized button. fn style(self, style: ButtonStyle) -> Self;