File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export class EventEmitter implements NodeEventEmitter {
84
84
static kMaxEventTargetListenersWarned = kMaxEventTargetListenersWarned ;
85
85
86
86
// Static utils
87
- static usingDomains = false ; // backwards compatibilit
87
+ static usingDomains = false ; // backwards compatibility
88
88
static get on ( ) {
89
89
return on ;
90
90
}
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export class Readable extends EventEmitter implements NodeStream.Readable {
75
75
return this ;
76
76
}
77
77
78
- pipe < T > ( _destenition : T , _options ?: { end ?: boolean } ) : T {
78
+ pipe < T > ( _destination : T , _options ?: { end ?: boolean } ) : T {
79
79
return { } as T ;
80
80
}
81
81
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ describe("fetchNodeRequestHandler", () => {
31
31
} ) ;
32
32
} ) ;
33
33
34
- it ( "heaaders (object)" , async ( ) => {
34
+ it ( "headers (object)" , async ( ) => {
35
35
const res = await fetchNodeRequestHandler ( echoHandler , "/test" , {
36
36
headers : { foo : "bar" , empty : "" } ,
37
37
} ) ;
@@ -41,7 +41,7 @@ describe("fetchNodeRequestHandler", () => {
41
41
} ) ;
42
42
} ) ;
43
43
44
- it ( "heaaders (Headers)" , async ( ) => {
44
+ it ( "headers (Headers)" , async ( ) => {
45
45
const res = await fetchNodeRequestHandler ( echoHandler , "/test" , {
46
46
headers : new Headers ( { foo : "bar" , empty : "" } ) ,
47
47
} ) ;
@@ -51,7 +51,7 @@ describe("fetchNodeRequestHandler", () => {
51
51
} ) ;
52
52
} ) ;
53
53
54
- it ( "heaaders (array)" , async ( ) => {
54
+ it ( "headers (array)" , async ( ) => {
55
55
const res = await fetchNodeRequestHandler ( echoHandler , "/test" , {
56
56
headers : [
57
57
[ "foo" , "bar" ] ,
You can’t perform that action at this time.
0 commit comments