Skip to content

Commit 0dba595

Browse files
committed
Remove stray file and add types
1 parent 329ef65 commit 0dba595

File tree

2 files changed

+2
-42
lines changed
  • lib/node_modules/@stdlib/math/base/special/ln/docs/types

2 files changed

+2
-42
lines changed

lib/node_modules/@stdlib/math/base/special/ln/docs/types/test.js

-40
This file was deleted.

lib/node_modules/@stdlib/math/base/special/ln/docs/types/test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ import ln = require( './index' );
2626
ln( 8 ); // $ExpectType number
2727
}
2828

29-
// The function does not compile if provided a value other than an a number...
29+
// The function does not compile if provided a value other than a number...
3030
{
3131
ln( true ); // $ExpectError
3232
ln( false ); // $ExpectError
3333
ln( '5' ); // $ExpectError
3434
ln( [] ); // $ExpectError
3535
ln( {} ); // $ExpectError
36-
ln( ( x ) => x ); // $ExpectError
36+
ln( ( x: number ): number => x ); // $ExpectError
3737
}
3838

3939
// The function does not compile if provided insufficient arguments...

0 commit comments

Comments
 (0)