Skip to content

Commit d99b4ef

Browse files
keithamusmuan
andauthored
docs: better punctuation in network request pattern prose
Co-authored-by: Mu-An 慕安 <me@muanchiou.com>
1 parent 6bd3b89 commit d99b4ef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/_guide/patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class FuzzySearchElement extends HTMLElement {
3232

3333
### Aborting Network Requests
3434

35-
When making network requests using `fetch`, based on user input, you can cancel old requests as new ones come in, this is useful for performance as well as UI responsiveness, as old requests that aren't cancelled might complete later than newer ones causing the UI to jump around. Aborting network requests requires you to use [`AbortController`](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) (a web platform feature).
35+
When making network requests using `fetch`, based on user input, you can cancel old requests as new ones come in. This is useful for performance as well as UI responsiveness, as old requests that aren't cancelled might complete later than newer ones, and causing the UI to jump around. Aborting network requests requires you to use [`AbortController`](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) (a web platform feature).
3636

3737
```typescript
3838
@controller

0 commit comments

Comments
 (0)