Skip to content

Commit

Permalink
chore: changes from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
aayush0325 committed Oct 18, 2024
1 parent fd79a0c commit b40d41a
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,15 @@
* // returns ~60.0
*
* @example
* var v = acosd( Math.sqrt( 2 ) / 2 );
* var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
*
* var v = acosd( sqrtf( 2 ) / 2 );
* // returns ~45.0
*
* @example
* var v = acosd( Math.sqrt( 3 ) / 2 );
* var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
*
* var v = acosd( sqrtf( 3 ) / 2 );
* // returns ~30.0
*
* @example
Expand Down

0 comments on commit b40d41a

Please sign in to comment.