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 <pburckhardt@outlook.com>
  • Loading branch information
Planeshifter authored Mar 12, 2024
1 parent d54cb18 commit 46b53a6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/asind/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ var v = asind( 0.0 );
v = asind( 0.5 );
// returns ~30.0

v = asind( sqrt( 2 ) / 2 );
v = asind( sqrt( 2.0 ) / 2.0 );
// returns ~45.0

v = asind( sqrt( 3 ) / 2 );
v = asind( sqrt( 3.0 ) / 2.0 );
// returns ~60.0

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

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

If `|x| > 1`, the function returns `NaN`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
* // returns ~30.0
*
* @example
* var v = asind( Math.sqrt( 2 ) / 2 );
* var v = asind( Math.sqrt( 2.0 ) / 2.0 );
* // returns ~45.0
*
* @example
* var v = asind( Math.sqrt( 3 ) / 2 );
* var v = asind( Math.sqrt( 3.0 ) / 2.0 );
* // returns ~60.0
*
* @example
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/asind/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
* var v = asind( 0.5 );
* // returns ~30.0
*
* var v = asind( Math.sqrt( 2 ) / 2 );
* var v = asind( Math.sqrt( 2.0 ) / 2.0 );
* // returns ~45.0
*
* var v = asind( Math.sqrt( 3 ) / 2 );
* var v = asind( Math.sqrt( 3.0 ) / 2.0 );
* // returns ~60.0
*
* var v = asind( NaN );
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/asind/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ var asin = require( '@stdlib/math/base/special/asin' );
* // returns ~30.0
*
* @example
* var v = asind( Math.sqrt( 2 ) / 2 );
* var v = asind( Math.sqrt( 2.0 ) / 2.0 );
* // returns ~45.0
*
* @example
* var v = asind( Math.sqrt( 3 ) / 2 );
* var v = asind( Math.sqrt( 3.0 ) / 2.0 );
* // returns ~60.0
*
* @example
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/math/base/special/asind",
"version": "0.0.0",
"description": "Compute the arcsine(in degrees) of a double-precision floating-point number.",
"description": "Compute the arcsine (in degrees) of a double-precision floating-point number.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand All @@ -14,7 +14,6 @@
}
],
"main": "./lib",
"gypfile": true,
"directories": {
"benchmark": "./benchmark",
"doc": "./docs",
Expand Down

0 comments on commit 46b53a6

Please sign in to comment.