Fix typo in doc comment

This commit is contained in:
Marshall Bowers
2023-10-18 10:45:20 -04:00
parent 1a156c1060
commit 7f69350e4d
+2 -2
View File
@@ -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