Skip to content

Commit 984d813

Browse files
authored
Fix typo in rendering-lists.md (#791)
Update rendering-lists.md
1 parent ac8c313 commit 984d813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/next/introduction/rendering-lists.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ want to allow editing the todo task after the todo has already been created.
113113
We might therefore want to change our `Todo` struct to look like:
114114

115115
```rust
116-
#[derve(Clone, PartialEq, Eq)]
116+
#[derive(Clone, PartialEq, Eq)]
117117
struct Todo {
118118
task: Signal<String>,
119119
id: u32,

0 commit comments

Comments
 (0)