Skip to content

Commit bde8c2f

Browse files
authored
a typo (#97)
1 parent 467909f commit bde8c2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/06.optimization/README.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function ProfileDetails({ username }: { username: string }) {
5757
```
5858

5959
The trouble with this is the `use(getFavoritesCount(username))` will cause the
60-
`ProfileDetails` will suspend until the `getFavoritesCount` request is resolved.
60+
`ProfileDetails` to suspend until the `getFavoritesCount` request is resolved.
6161
Only then will the `getFriends` request be made. This is a waterfall.
6262

6363
To solve this problem is pretty simple, though maybe not obvious at first. You

0 commit comments

Comments
 (0)