Skip to content

Commit 7ea8004

Browse files
committed
Auto-generated commit
1 parent c6859f4 commit 7ea8004

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/.keepalive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2022-10-01T01:45:07.606Z

docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import toBinaryString = require( './index' );
2727
toBinaryString( new Uint8Array( [ 4 ] )[ 0 ] ); // $ExpectType string
2828
}
2929

30-
// The function does not compile if provided a value other than a number...
30+
// The compiler throws an error if the function is provided a value other than a number...
3131
{
3232
toBinaryString( true ); // $ExpectError
3333
toBinaryString( false ); // $ExpectError
@@ -37,7 +37,7 @@ import toBinaryString = require( './index' );
3737
toBinaryString( ( x: number ): number => x ); // $ExpectError
3838
}
3939

40-
// The function does not compile if provided insufficient arguments...
40+
// The compiler throws an error if the function is provided insufficient arguments...
4141
{
4242
toBinaryString(); // $ExpectError
4343
}

0 commit comments

Comments
 (0)