@@ -20,7 +20,7 @@ limitations under the License.
2020
2121# sqrtpif
2222
23- > Compute the principal [ square root] [ @stdlib/math/base/special/sqrt ] of the product of π and a positive single-precision floating-point number.
23+ > Compute the principal [ square root] [ @stdlib/math/base/special/sqrtf ] of the product of π and a positive single-precision floating-point number.
2424
2525<section class =" usage " >
2626
@@ -32,7 +32,7 @@ var sqrtpif = require( '@stdlib/math/base/special/sqrtpif' );
3232
3333#### sqrtpif( x )
3434
35- Computes the principal [ square root] [ @stdlib/math/base/special/sqrt ] of the product of π and a positive single-precision floating-point number.
35+ Computes the principal [ square root] [ @stdlib/math/base/special/sqrtf ] of the product of π and a positive single-precision floating-point number.
3636
3737``` javascript
3838var v = sqrtpif ( 4.0 );
@@ -48,7 +48,7 @@ v = sqrtpif( NaN );
4848// returns NaN
4949```
5050
51- For negative numbers, the principal [ square root] [ @stdlib/math/base/special/sqrt ] is ** not** defined.
51+ For negative numbers, the principal [ square root] [ @stdlib/math/base/special/sqrtf ] is ** not** defined.
5252
5353``` javascript
5454var v = sqrtpif ( - 4.0 );
@@ -110,7 +110,7 @@ for ( i = 0; i < 100; i++ ) {
110110
111111#### stdlib_base_sqrtpif( x )
112112
113- Computes the principal [ square root] [ @stdlib/math/base/special/sqrt ] of the product of π and a positive single-precision floating-point number.
113+ Computes the principal [ square root] [ @stdlib/math/base/special/sqrtf ] of the product of π and a positive single-precision floating-point number.
114114
115115``` c
116116float x = stdlib_base_sqrtpif( 4.0 );
@@ -190,7 +190,7 @@ int main( void ) {
190190
191191<section class =" links " >
192192
193- [ @stdlib/math/base/special/sqrt ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/sqrt
193+ [ @stdlib/math/base/special/sqrtf ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/sqrtf
194194
195195<!-- <related-links> -->
196196
0 commit comments