Fix typo in doc comment

Marshall Bowers created

Change summary

crates/gpui3/src/styled.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

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