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
This commit is contained in:
Marshall Bowers 2023-12-19 16:32:57 -05:00 committed by GitHub
parent a9fe108dbb
commit 097640e7c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;