Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Philipp Burckhardt <[email protected]>
  • Loading branch information
Planeshifter authored Mar 12, 2024
1 parent c3245a8 commit ed12588
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/atand/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ var v = atand( 0.0 );
v = atand( 0.5 );
// returns ~26.57

v = atand( 1 / sqrt( 3 ) );
v = atand( 1.0 / sqrt( 3.0 ) );
// returns ~30.0

v = atand( 1 );
v = atand( 1.0 );
// returns 45.0

v = atand( Infinity );
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

{{alias}}( x )
Computes the arctangent of a double-precision floating-point number.
Computes the arctangent (in degrees) of a double-precision floating-point
number.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/atand/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
* var v = atand( 0.5 );
* // returns ~26.57
*
* var v = atand( 1 / Math.sqrt( 3 ) );
* var v = atand( 1.0 / Math.sqrt( 3.0 ) );
* // returns ~30.0
*
* var v = atand( 1 );
* var v = atand( 1.0 );
* // returns 45.0
*
* var v = atand( Infinity );
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/atand/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ var atan = require( '@stdlib/math/base/special/atan' );
* // returns ~26.57
*
* @example
* var v = atand( 1 / Math.sqrt( 3 ) );
* var v = atand( 1.0 / Math.sqrt( 3.0 ) );
* // returns ~30.0
*
* @example
* var v = atand( 1 );
* var v = atand( 1.0 );
* // returns 45.0
*
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
}
],
"main": "./lib",
"gypfile": true,
"directories": {
"benchmark": "./benchmark",
"doc": "./docs",
Expand Down Expand Up @@ -54,11 +53,9 @@
"stdmath",
"mathematics",
"math",
"math.asin",
"asin",
"degree",
"arctangent",
"sine",
"tangent",
"inverse",
"trig",
"trigonometry",
Expand Down

0 comments on commit ed12588

Please sign in to comment.