Skip to content

Commit fba93d4

Browse files
committed
Update README.md for Deno bundle v0.2.1
1 parent 494f502 commit fba93d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ A **FancyArray** is an [`ndarray`][@stdlib/ndarray/ctor] which supports slicing
4545

4646
```javascript
4747
import ndarray2array from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-to-array@deno/mod.js';
48-
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@deno/mod.js';
48+
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@v0.2.1-deno/mod.js';
4949

5050
var buffer = [ 1, 2, 3, 4, 5, 6 ];
5151
var x = new FancyArray( 'generic', buffer, [ 6 ], [ 1 ], 0, 'row-major' );
@@ -86,7 +86,7 @@ arr = ndarray2array( y );
8686
## Usage
8787

8888
```javascript
89-
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@deno/mod.js';
89+
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@v0.2.1-deno/mod.js';
9090
```
9191

9292
<a name="main"></a>
@@ -706,7 +706,7 @@ The method does **not** serialize data outside of the buffer region defined by t
706706
import S from 'https://cdn.jsdelivr.net/gh/stdlib-js/slice-ctor@deno/mod.js';
707707
import E from 'https://cdn.jsdelivr.net/gh/stdlib-js/slice-multi@deno/mod.js';
708708
import toArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-to-array@deno/mod.js';
709-
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@deno/mod.js';
709+
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@v0.2.1-deno/mod.js';
710710
711711
var buffer = [
712712
1, 2,

0 commit comments

Comments
 (0)