From 1bcd539f8faba1ed6939aa19fd0b63b01d7e1c78 Mon Sep 17 00:00:00 2001 From: Jonathan Picques Date: Fri, 6 Oct 2023 15:48:10 +0200 Subject: [PATCH] Fix typo in introduction (#3448) --- website/docs/concepts/html/introduction.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/concepts/html/introduction.mdx b/website/docs/concepts/html/introduction.mdx index 8886778e87d..729db102dd8 100644 --- a/website/docs/concepts/html/introduction.mdx +++ b/website/docs/concepts/html/introduction.mdx @@ -204,7 +204,7 @@ Read more at [Lists](./html/lists) ## Conditional Rendering -Markup can be rendered conditonally by using Rust's conditional structures. ' + +Markup can be rendered conditionally by using Rust's conditional structures. ' + 'Currently only `if` and `if let` are supported. ```rust @@ -218,5 +218,5 @@ html! { ``` :::info -Read more at [Conditonal Rendering](./conditional-rendering.mdx) +Read more at [Conditional Rendering](./conditional-rendering.mdx) :::