Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 24, 2023
1 parent 87a0275 commit 87859b4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
# Contributors listed in alphabetical order.

Ali Salesi <[email protected]>
Amit Jimiwal <[email protected]>
Athan Reines <[email protected]>
Brendan Graetz <[email protected]>
Bruno Fenzl <[email protected]>
Christopher Dambamuromo <[email protected]>
Dan Rose <[email protected]>
Dominik Moritz <[email protected]>
Dorrin Sotoudeh <[email protected]>
Frank Kovacs <[email protected]>
Harshita Kalani <[email protected]>
James Gelok <[email protected]>
Expand All @@ -16,12 +19,12 @@ Joey Reed <[email protected]>
Jordan Gallivan <[email protected]>
Joris Labie <[email protected]>
Justin Dennison <[email protected]>
Nithin Katta <[email protected]>
Marcus Fantham <[email protected]>
Matt Cochrane <[email protected]>
Milan Raj <[email protected]>
Momtchil Momtchev <[email protected]>
Naresh Jagadeesan <[email protected]>
Nithin Katta <[email protected]>
Ognjen Jevremović <[email protected]>
Philipp Burckhardt <[email protected]>
Pranav Goswami <[email protected]>
Expand All @@ -32,7 +35,5 @@ Seyyed Parsa Neshaei <[email protected]>
Shraddheya Shendre <[email protected]>
Stephannie Jiménez Gacha <[email protected]>
Yernar Yergaziyev <[email protected]>
Dorrin Sotoudeh <[email protected]>
Amit Jimiwal <[email protected]>
orimiles5 <[email protected]>
rei2hu <[email protected]>
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var subnormal = require( './fixtures/julia/subnormal.json' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof rsqrt, 'function', 'main export is a function' );
t.strictEqual( typeof rsqrt, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion test/test.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ var opts = {

tape( 'main export is a function', opts, function test( t ) {
t.ok( true, __filename );
t.equal( typeof rsqrt, 'function', 'main export is a function' );
t.strictEqual( typeof rsqrt, 'function', 'main export is a function' );
t.end();
});

Expand Down

0 comments on commit 87859b4

Please sign in to comment.