Skip to content

Commit

Permalink
rephrase some comments (#2717)
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzlopak committed Feb 9, 2024
1 parent 0860735 commit cebfdcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/fetch/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ function fetching ({
useParallelQueue = false,
dispatcher // undici
}) {
// This has bitten me in the ass more times than I'd like to admit.
// Ensure that the dispatcher is set accordingly
assert(dispatcher)

// 1. Let taskDestination be null.
Expand Down
2 changes: 1 addition & 1 deletion lib/fetch/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ function simpleRangeHeaderValue (value, allowWhitespace) {

// 13. If allowWhitespace is true, collect a sequence of code points that are HTTP tab
// or space, from data given position.
// Note from Khafra: its the same fucking step again lol
// Note from Khafra: its the same step as in #8 again lol
if (allowWhitespace) {
collectASequenceOfCodePoints(
(char) => char === '\t' || char === ' ',
Expand Down

0 comments on commit cebfdcd

Please sign in to comment.