Skip to content

Commit 352a085

Browse files
Fix typo in html! concept docs (#3096)
I am learning Yew and noticed this small typo in the docs as I was reading through it, so I thought I'd fix it :)
1 parent c5ffe60 commit 352a085

File tree

1 file changed

+1
-1
lines changed
  • website/versioned_docs/version-0.20/concepts/basic-web-technologies

1 file changed

+1
-1
lines changed

website/versioned_docs/version-0.20/concepts/basic-web-technologies/html.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ let combined_html: Html = html! {
3939
};
4040
```
4141

42-
One rule major rule comes with use of `html!` - you can only return 1 wrapping node.
42+
One major rule comes with the use of `html!` - you can only return 1 wrapping node.
4343
To render a list of multiple elements, `html!` allows fragments. Fragments are tags
4444
without a name, that produce no html element by themselves.
4545

0 commit comments

Comments
 (0)