Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/_polyfill/events/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class EventEmitter implements NodeEventEmitter {
static kMaxEventTargetListenersWarned = kMaxEventTargetListenersWarned;

// Static utils
static usingDomains = false; // backwards compatibilit
static usingDomains = false; // backwards compatibility
static get on() {
return on;
}
Expand Down
2 changes: 1 addition & 1 deletion src/stream/readable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class Readable extends EventEmitter implements NodeStream.Readable {
return this;
}

pipe<T>(_destenition: T, _options?: { end?: boolean }): T {
pipe<T>(_destination: T, _options?: { end?: boolean }): T {
return {} as T;
}

Expand Down
6 changes: 3 additions & 3 deletions test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe("fetchNodeRequestHandler", () => {
});
});

it("heaaders (object)", async () => {
it("headers (object)", async () => {
const res = await fetchNodeRequestHandler(echoHandler, "/test", {
headers: { foo: "bar", empty: "" },
});
Expand All @@ -41,7 +41,7 @@ describe("fetchNodeRequestHandler", () => {
});
});

it("heaaders (Headers)", async () => {
it("headers (Headers)", async () => {
const res = await fetchNodeRequestHandler(echoHandler, "/test", {
headers: new Headers({ foo: "bar", empty: "" }),
});
Expand All @@ -51,7 +51,7 @@ describe("fetchNodeRequestHandler", () => {
});
});

it("heaaders (array)", async () => {
it("headers (array)", async () => {
const res = await fetchNodeRequestHandler(echoHandler, "/test", {
headers: [
["foo", "bar"],
Expand Down