Skip to content

Commit 04c30e7

Browse files
committed
Update README.md for Deno bundle v0.2.1
1 parent 68c30f3 commit 04c30e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ limitations under the License.
4242
## Usage
4343

4444
```javascript
45-
import isSquareMatrix from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-square-matrix@deno/mod.js';
45+
import isSquareMatrix from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-square-matrix@v0.2.1-deno/mod.js';
4646
```
4747

4848
#### isSquareMatrix( value )
@@ -69,7 +69,7 @@ var bool = isSquareMatrix( arr );
6969

7070
```javascript
7171
import ndarray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-ctor@deno/mod.js';
72-
import isSquareMatrix from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-square-matrix@deno/mod.js';
72+
import isSquareMatrix from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-square-matrix@v0.2.1-deno/mod.js';
7373

7474
var arr = ndarray( 'generic', [ 0, 0, 0, 0 ], [ 2, 2 ], [ 2, 1 ], 0, 'row-major' );
7575
var out = isSquareMatrix( arr );

0 commit comments

Comments
 (0)