Skip to content

Commit 7b7a3e6

Browse files
authored
docs: fix typos in source comments
PR-URL: #2657 Ref: 143e88d#r144618112 Reviewed-by: Athan Reines <[email protected]> Signed-off-by: GUNJ JOSHI <[email protected]>
1 parent 143e88d commit 7b7a3e6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/math/base/special/cosm1/test/test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ var cosm1 = require( './../lib' );
3434

3535
// VARIABLES //
3636

37-
var NPIO4 = -7.85398163397448309616e-1; // -4/π
38-
var PIO4 = 7.85398163397448309616e-1; // 4/π
37+
var NPIO4 = -7.85398163397448309616e-1; // -π/4
38+
var PIO4 = 7.85398163397448309616e-1; // π/4
3939

4040

4141
// FIXTURES //

lib/node_modules/@stdlib/math/base/special/cosm1/test/test.native.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ var tryRequire = require( '@stdlib/utils/try-require' );
3535

3636
// VARIABLES //
3737

38-
var NPIO4 = -7.85398163397448309616e-1; // -4/π
39-
var PIO4 = 7.85398163397448309616e-1; // 4/π
38+
var NPIO4 = -7.85398163397448309616e-1; // -π/4
39+
var PIO4 = 7.85398163397448309616e-1; // π/4
4040
var cosm1 = tryRequire( resolve( __dirname, './../lib/native.js' ) );
4141
var opts = {
4242
'skip': ( cosm1 instanceof Error )

0 commit comments

Comments
 (0)