Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed Jan 27, 2024
1 parent 06f9e8f commit 4e7f73c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/core/io.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ class FetchReader extends Reader {

constructor(url, options) {
super();
createHtpReader(this, url, options);
createHttpReader(this, url, options);
}

async init() {
Expand All @@ -279,7 +279,7 @@ class XHRReader extends Reader {

constructor(url, options) {
super();
createHtpReader(this, url, options);
createHttpReader(this, url, options);
}

async init() {
Expand All @@ -292,7 +292,7 @@ class XHRReader extends Reader {
}
}

function createHtpReader(httpReader, url, options) {
function createHttpReader(httpReader, url, options) {
const {
preventHeadRequest,
useRangeHeader,
Expand Down

0 comments on commit 4e7f73c

Please sign in to comment.