Skip to content

Commit 433c3f1

Browse files
committed
Update namespace
1 parent 516813f commit 433c3f1

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

lib/node_modules/@stdlib/blas/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
# BLAS
2222

23-
> Standard library basic linear algebra subroutines (BLAS).
23+
> Standard library basic linear algebra subprograms (BLAS).
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var blas = require( '@stdlib/blas' );
3232

3333
#### blas
3434

35-
Standard library basic linear algebra subroutines (BLAS).
35+
Standard library basic linear algebra subprograms (BLAS).
3636

3737
```javascript
3838
var o = blas;

lib/node_modules/@stdlib/blas/base/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
# BLAS
2222

23-
> Standard library base basic linear algebra subroutines (BLAS).
23+
> Standard library base basic linear algebra subprograms (BLAS).
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var blas = require( '@stdlib/blas/base' );
3232

3333
#### blas
3434

35-
Standard library base basic linear algebra subroutines (BLAS).
35+
Standard library base basic linear algebra subprograms (BLAS).
3636

3737
```javascript
3838
var o = blas;

lib/node_modules/@stdlib/blas/base/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/blas/base",
33
"version": "0.0.0",
4-
"description": "Standard library basic linear algebra subroutines (BLAS).",
4+
"description": "Standard library basic linear algebra subprograms (BLAS).",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",
@@ -59,7 +59,7 @@
5959
"linear",
6060
"algebra",
6161
"routines",
62-
"subroutines",
62+
"subprograms",
6363
"ndarray",
6464
"vector",
6565
"array",

lib/node_modules/@stdlib/blas/lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,15 @@ setReadOnly( ns, 'ddot', require( '@stdlib/blas/ddot' ) );
6363
*/
6464
setReadOnly( ns, 'dswap', require( '@stdlib/blas/dswap' ) );
6565

66+
/**
67+
* @name ext
68+
* @memberof ns
69+
* @readonly
70+
* @type {Namespace}
71+
* @see {@link module:@stdlib/blas/ext}
72+
*/
73+
setReadOnly( ns, 'ext', require( '@stdlib/blas/ext' ) );
74+
6675
/**
6776
* @name gdot
6877
* @memberof ns

0 commit comments

Comments
 (0)