Skip to content

Commit ddc4d66

Browse files
authored
chore: minor clean-up
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 288c24c commit ddc4d66

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

lib/node_modules/@stdlib/number/float16/base/sub/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ limitations under the License.
2222

2323
> Subtract two half-precision floating-point numbers.
2424
25-
2625
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2726

2827
<section class="intro">
@@ -43,7 +42,7 @@ var sub = require( '@stdlib/number/float16/base/sub' );
4342

4443
#### sub( x, y )
4544

46-
Subtract two half-precision floating-point numbers.
45+
Subtracts two half-precision floating-point numbers.
4746

4847
```javascript
4948
var v = sub( -1.0, 5.0 );

lib/node_modules/@stdlib/number/float16/base/sub/docs/repl.txt

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

22
{{alias}}( x, y )
3-
Subtract two half-precision floating-point numbers.
3+
Subtracts two half-precision floating-point numbers `x` and `y`.
44

55
Parameters
66
----------

lib/node_modules/@stdlib/number/float16/base/sub/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-
* Subtracts two half-precision floating-point numbers .
22+
* Subtracts two half-precision floating-point numbers `x` and `y`.
2323
*
2424
* @param x - first input value
2525
* @param y - second input value

lib/node_modules/@stdlib/number/float16/base/sub/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var float64ToFloat16 = require( '@stdlib/number/float64/base/to-float16' );
2626
// MAIN //
2727

2828
/**
29-
* Subtracts two half-precision floating-point numbers.
29+
* Subtracts two half-precision floating-point numbers `x` and `y`.
3030
*
3131
* @param {number} x - first input value
3232
* @param {number} y - second input value

0 commit comments

Comments
 (0)