Skip to content

Commit dd323b6

Browse files
authored
Typo fix: '?' is placed in a wrong position (#12263)
* Typo fix: '?' is placed in a wrong position * Sign CLA
1 parent cb04756 commit dd323b6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

contributors.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@
277277
- vitekzach
278278
- vonagam
279279
- WalkAlone0325
280+
- whxhlgy
280281
- willemarcel
281282
- williamsdyyz
282283
- willsawyerrrr

docs/start/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ Consider a search field that updates a list as the user types:
622622
^ lose correct state
623623
```
624624

625-
Even though the query for `q?=ryan` went out later, it completed earlier. If not handled correctly, the results will briefly be the correct values for `?q=ryan` but then flip over the incorrect results for `?q=ry`. Throttling and debouncing are not enough (you can still interrupt the requests that get through). You need cancellation.
625+
Even though the query for `?q=ryan` went out later, it completed earlier. If not handled correctly, the results will briefly be the correct values for `?q=ryan` but then flip over the incorrect results for `?q=ry`. Throttling and debouncing are not enough (you can still interrupt the requests that get through). You need cancellation.
626626

627627
If you're using React Router's data conventions you avoid this problem completely and automatically.
628628

0 commit comments

Comments
 (0)