Skip to content

Commit e7c7069

Browse files
committed
chore: update package descriptions
1 parent 7656dae commit e7c7069

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

lib/node_modules/@stdlib/math/base/special/gcdf/docs/repl.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
{{alias}}( a, b )
3-
Computes the greatest common divisor (gcd).
3+
Computes the greatest common divisor (gcd) of two single-precision
4+
floating point numbers.
45

56
If both `a` and `b` are `0`, the function returns `0`.
67

lib/node_modules/@stdlib/math/base/special/gcdf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TypeScript Version: 4.1
2020

2121
/**
22-
* Computes the greatest common divisor (gcd).
22+
* Computes the greatest common divisor (gcd) of two single-precision floating point numbers.
2323
*
2424
* ## Notes
2525
*

lib/node_modules/@stdlib/math/base/special/gcdf/include/stdlib/math/base/special/gcdf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Computes the greatest common divisor (gcd).
30+
* Computes the greatest common divisor (gcd) of two single-precision floating point numbers.
3131
*/
3232
float stdlib_base_gcdf( const float a, const float b );
3333

lib/node_modules/@stdlib/math/base/special/gcdf/lib/binary_gcd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Computes the greatest common divisor (gcd) using the binary GCD algorithm.
22+
* Computes the greatest common divisor (gcd) of two single-precision floating point numbers using the binary GCD algorithm.
2323
*
2424
* ## References
2525
*

lib/node_modules/@stdlib/math/base/special/gcdf/lib/bitwise_binary_gcd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Computes the greatest common divisor (gcd) using the binary GCD algorithm and bitwise operations.
22+
* Computes the greatest common divisor (gcd) of two single-precision floating point numbers using the binary GCD algorithm and bitwise operations.
2323
*
2424
* ## References
2525
*

lib/node_modules/@stdlib/math/base/special/gcdf/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Compute the greatest common divisor (gcd).
22+
* Compute the greatest common divisor (gcd) of two single-precision floating point numbers.
2323
*
2424
* @module @stdlib/math/base/special/gcdf
2525
*

lib/node_modules/@stdlib/math/base/special/gcdf/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var largeIntegersf = require( './binary_gcd.js' );
3232
// MAIN //
3333

3434
/**
35-
* Computes the greatest common divisor (gcd).
35+
* Computes the greatest common divisor (gcd) of two single-precision floating point numbers.
3636
*
3737
* @param {integer} a - first number
3838
* @param {integer} b - second number

lib/node_modules/@stdlib/math/base/special/gcdf/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
2626
// MAIN //
2727

2828
/**
29-
* Computes the greatest common divisor (gcd).
29+
* Computes the greatest common divisor (gcd) of two single-precision floating point numbers.
3030
*
3131
* @private
3232
* @param {number} a - first number

0 commit comments

Comments
 (0)