Skip to content

Commit 3c02553

Browse files
committed
docs: fix description
1 parent 0661629 commit 3c02553

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/ndarray/base/broadcast-scalar/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# broadcastScalar
2222

23-
> Broadcast a scalar value to an [`ndarray`][@stdlib/ndarray/base/ctor] to a specified shape.
23+
> Broadcast a scalar value to an [`ndarray`][@stdlib/ndarray/base/ctor] having a specified shape.
2424
2525
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

@@ -42,7 +42,7 @@ var broadcastScalar = require( '@stdlib/ndarray/base/broadcast-scalar' );
4242

4343
#### broadcastScalar( value, dtype, shape, order )
4444

45-
Broadcast a scalar value to an [`ndarray`][@stdlib/ndarray/base/ctor] to a specified shape and [data type][@stdlib/ndarray/dtypes].
45+
Broadcast a scalar value to an [`ndarray`][@stdlib/ndarray/base/ctor] having a specified shape and [data type][@stdlib/ndarray/dtypes].
4646

4747
```javascript
4848
var x = broadcastScalar( 1.0, 'float64', [ 2, 2 ], 'row-major' );

lib/node_modules/@stdlib/ndarray/base/broadcast-scalar/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-
* Broadcast a scalar value to an ndarray to a specified shape.
22+
* Broadcast a scalar value to an ndarray having a specified shape.
2323
*
2424
* @module @stdlib/ndarray/base/broadcast-scalar
2525
*

lib/node_modules/@stdlib/ndarray/base/broadcast-scalar/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/ndarray/base/broadcast-scalar",
33
"version": "0.0.0",
4-
"description": "Broadcast a scalar value to an ndarray to a specified shape.",
4+
"description": "Broadcast a scalar value to an ndarray having a specified shape.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)