Skip to content

Commit

Permalink
docs: fix typos in source comments
Browse files Browse the repository at this point in the history
PR-URL: #2657
Ref: 143e88d#r144618112
Reviewed-by: Athan Reines <kgryte@gmail.com>
Signed-off-by: GUNJ JOSHI <gunjjoshi8372@gmail.com>
  • Loading branch information
gunjjoshi authored Jul 25, 2024
1 parent 143e88d commit 7b7a3e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/cosm1/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ var cosm1 = require( './../lib' );

// VARIABLES //

var NPIO4 = -7.85398163397448309616e-1; // -4/π
var PIO4 = 7.85398163397448309616e-1; // 4/π
var NPIO4 = -7.85398163397448309616e-1; // -π/4
var PIO4 = 7.85398163397448309616e-1; // π/4


// FIXTURES //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ var tryRequire = require( '@stdlib/utils/try-require' );

// VARIABLES //

var NPIO4 = -7.85398163397448309616e-1; // -4/π
var PIO4 = 7.85398163397448309616e-1; // 4/π
var NPIO4 = -7.85398163397448309616e-1; // -π/4
var PIO4 = 7.85398163397448309616e-1; // π/4
var cosm1 = tryRequire( resolve( __dirname, './../lib/native.js' ) );
var opts = {
'skip': ( cosm1 instanceof Error )
Expand Down

1 comment on commit 7b7a3e6

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
math/base/special/cosm1 $\color{green}242/242$
$\color{green}+100.00\%$
$\color{green}12/12$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}242/242$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.