diff --git a/README.md b/README.md index bfa85c41..3da8b1c3 100644 --- a/README.md +++ b/README.md @@ -42,13 +42,13 @@ limitations under the License. ## Usage ```javascript -import blas from 'https://cdn.jsdelivr.net/gh/stdlib-js/blas@deno/mod.js'; +import blas from 'https://cdn.jsdelivr.net/gh/stdlib-js/blas@v0.3.3-deno/mod.js'; ``` You can also import the following named exports from the package: ```javascript -import { base, ddot, dswap, ext, gdot, gswap, sdot, sswap } from 'https://cdn.jsdelivr.net/gh/stdlib-js/blas@deno/mod.js'; +import { base, ddot, dswap, ext, gdot, gswap, sdot, sswap } from 'https://cdn.jsdelivr.net/gh/stdlib-js/blas@v0.3.3-deno/mod.js'; ``` #### blas @@ -93,7 +93,7 @@ The namespace contains the following: ```javascript import objectKeys from 'https://cdn.jsdelivr.net/gh/stdlib-js/utils/keys@deno/mod.js'; -import blas from 'https://cdn.jsdelivr.net/gh/stdlib-js/blas@deno/mod.js'; +import blas from 'https://cdn.jsdelivr.net/gh/stdlib-js/blas@v0.3.3-deno/mod.js'; console.log( objectKeys( blas ) ); ```