Skip to content

Commit

Permalink
docs: fix a typo (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyril-marpaud authored Dec 1, 2023
1 parent 9efa848 commit de844e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/async/11_suspense.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ In other words:

1. It only polls the `Future` once, and does not respond to any reactive changes.
2. It does not render anything until the `Future` resolves.
3. After the `Future` resolves, its binds its data to whatever variable name you choose and then renders its children with that variable in scope.
3. After the `Future` resolves, it binds its data to whatever variable name you choose and then renders its children with that variable in scope.

```rust
async fn fetch_monkeys(monkey: i32) -> i32 {
Expand Down

0 comments on commit de844e9

Please sign in to comment.