@@ -478,7 +478,7 @@ pub trait Styled: Sized {
}
/// Sets the font style of the element to normal (not italic).
- /// [Docs](https://tailwindcss.com/docs/font-style#italicizing-text)
+ /// [Docs](https://tailwindcss.com/docs/font-style#displaying-text-normally)
fn not_italic(mut self) -> Self {
self.text_style()
.get_or_insert_with(Default::default)
@@ -498,7 +498,7 @@ pub trait Styled: Sized {
}
/// Sets the decoration of the text to have a line through it.
- /// [Docs](https://tailwindcss.com/docs/text-decoration#setting-the-text-decoration)
+ /// [Docs](https://tailwindcss.com/docs/text-decoration-line#adding-a-line-through-text)
fn line_through(mut self) -> Self {
let style = self.text_style().get_or_insert_with(Default::default);
style.strikethrough = Some(StrikethroughStyle {