Fix typo in `ButtonCommon` doc comment (#3722)

Marshall Bowers created

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

Change summary

crates/ui2/src/components/button/button_like.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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;