Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/sqrtpif/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,10 @@ int main( void ) {

<section class="links">

<!-- <related-links> -->

[@stdlib/math/base/special/sqrt]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/sqrt

<!-- <related-links> -->

<!-- </related-links> -->

</section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extern "C" {
#endif

/**
* Compute the principal square root of the product of π and a positive single-precision floating-point number.
* Computes the principal square root of the product of π and a positive single-precision floating-point number.
*/
float stdlib_base_sqrtpif( const float x );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "stdlib/constants/float32/pi.h"

/**
* Compute the principal square root of the product of π and a positive single-precision floating-point number.
* Computes the principal square root of the product of π and a positive single-precision floating-point number.
*
* @param x input value
* @return output value
Expand Down
Loading