Skip to content

Commit

Permalink
fix typos in timeout comments (#12738)
Browse files Browse the repository at this point in the history
  • Loading branch information
camthompson authored Jan 14, 2025
1 parent 6f2168e commit 579821f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
- brophdawg11
- btav
- bvangraafeiland
- camthompson
- CanRau
- cassidoo
- chaance
Expand Down
2 changes: 1 addition & 1 deletion docs/explanation/special-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export default function handleRequest(...) {
{ /* ... */ }
);

// Abort the streaming render pass after 11 seconds soto allow the rejected
// Abort the streaming render pass after 11 seconds to allow the rejected
// boundaries to be flushed
setTimeout(abort, streamTimeout + 1000);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default function handleRequest(
}
);

// Abort the rendering stream after the `streamTimeout` so it has tine to
// Abort the rendering stream after the `streamTimeout` so it has time to
// flush down the rejected boundaries
setTimeout(abort, streamTimeout + 1000);
});
Expand Down

0 comments on commit 579821f

Please sign in to comment.