Skip to content

Commit fafe154

Browse files
chore: update example description
1 parent 99780ce commit fafe154

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ var map = require( '@stdlib/array/base/map' );
8888
var logEachMap = require( '@stdlib/console/log-each-map' );
8989
var add = require( '@stdlib/number/float16/base/add' );
9090

91-
// Create arrays of random half-precision floating-point numbers:
91+
// Create an array of random half-precision floating-point numbers:
9292
var x = map( uniform( 100, -50.0, 50.0 ), toFloat16 );
9393

94-
// Create arrays of random half-precision floating-point numbers:
94+
// Create an array of random half-precision floating-point numbers:
9595
var y = map( uniform( 100, -50.0, 50.0 ), toFloat16 );
9696

9797
// Determine the sum of each number:

lib/node_modules/@stdlib/number/float16/base/add/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var add = require( './../lib' );
2727
// Create an array of random half-precision floating-point numbers:
2828
var x = map( uniform( 100, -50.0, 50.0 ), toFloat16 );
2929

30-
// Create arrays of random half-precision floating-point numbers:
30+
// Create an array of random half-precision floating-point numbers:
3131
var y = map( uniform( 100, -50.0, 50.0 ), toFloat16 );
3232

3333
// Determine the sum of each number:

0 commit comments

Comments
 (0)