Skip to content

Commit a3ce49d

Browse files
committed
Add namespace Typescript definition and fix test description
1 parent 567c861 commit a3ce49d

File tree

15 files changed

+1006
-12
lines changed

15 files changed

+1006
-12
lines changed

lib/node_modules/@stdlib/streams/node/debug-sink/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function clbk( debug: Function, chunk: any, idx: number ) {
5353
debugSinkStream( { 'objectMode': true }, clbk ); // $ExpectType Writable
5454
}
5555

56-
// The constructor has an `objectMode` method returns a stream...
56+
// The constructor has an `objectMode` method which returns a stream...
5757
{
5858
DebugSinkStream.objectMode(); // $ExpectType Writable
5959
DebugSinkStream.objectMode( clbk ); // $ExpectType Writable

lib/node_modules/@stdlib/streams/node/debug/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function clbk( debug: Function, chunk: any, idx: number ) {
5353
debugStream( { 'objectMode': true }, clbk ); // $ExpectType Transform
5454
}
5555

56-
// The constructor has an `objectMode` method returns a stream...
56+
// The constructor has an `objectMode` method which returns a stream...
5757
{
5858
DebugStream.objectMode(); // $ExpectType Transform
5959
DebugStream.objectMode( clbk ); // $ExpectType Transform

0 commit comments

Comments
 (0)