From 7f69350e4db9f7290bd8f3cebabf12c2e626978a Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 18 Oct 2023 10:45:20 -0400 Subject: [PATCH] Fix typo in doc comment --- crates/gpui3/src/styled.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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