docs: fix typo for WrapsChildren (#1402)

This commit is contained in:
Joshua Marsh 2023-07-22 06:26:36 -06:00 committed by GitHub
parent 1d9931a5a8
commit e6fd1379b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -115,11 +115,11 @@ Calling it like this will create a list:
```rust
view! { cx,
<WrappedChildren>
<WrapsChildren>
"A"
"B"
"C"
</WrappedChildren>
</WrapsChildren>
}
```