diff --git a/crates/gpui3/src/styled.rs b/crates/gpui3/src/styled.rs index 30e4269b1305b468548bac0ca386ed6ff9f02852..56a1b68c75d56754d61b28d62a9e979df92e7eb4 100644 --- a/crates/gpui3/src/styled.rs +++ b/crates/gpui3/src/styled.rs @@ -60,7 +60,7 @@ pub trait Styled { self } - /// Sets the flex directino of the element to `column`. + /// Sets the flex direction of the element to `column`. /// [Docs](https://tailwindcss.com/docs/flex-direction#column) fn flex_col(mut self) -> Self where @@ -70,7 +70,7 @@ pub trait Styled { self } - /// Sets the flex directino of the element to `row`. + /// Sets the flex direction of the element to `row`. /// [Docs](https://tailwindcss.com/docs/flex-direction#row) fn flex_row(mut self) -> Self where