Skip to content

Commit

Permalink
Fix typo: 'Form' to 'form' since it is a HTML element (#105)
Browse files Browse the repository at this point in the history
* Fix typo: 'Form' to 'form' since it is a HTML element

* Fix typo: 'form' to 'FancyForm'
  • Loading branch information
NCura authored Jun 21, 2024
1 parent 6784370 commit bc889e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/view/09_component_children.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ that enhances an HTML `<form>`. I need some way to pass all its inputs.

```rust
view! {
<Form>
<FancyForm>
<fieldset>
<label>
"Some Input"
<input type="text" name="something"/>
</label>
</fieldset>
<button>"Submit"</button>
</Form>
</FancyForm>
}
```

Expand Down

0 comments on commit bc889e4

Please sign in to comment.