Skip to content

Commit 41e6fb1

Browse files
committed
Update README.md for UMD bundle v0.2.1
1 parent b884ab1 commit 41e6fb1

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
@@ -95,7 +95,7 @@ L_{-n}(x) = (-1)^{n} L_n(x)
9595
To use in Observable,
9696

9797
```javascript
98-
lucaspoly = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/math-base-tools-lucaspoly@umd/browser.js' )
98+
lucaspoly = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/math-base-tools-lucaspoly@v0.2.1-umd/browser.js' )
9999
```
100100

101101
To vendor stdlib functionality and avoid installing dependency trees for Node.js, you can use the UMD server build:
@@ -107,7 +107,7 @@ var lucaspoly = require( 'path/to/vendor/umd/math-base-tools-lucaspoly/index.js'
107107
To include the bundle in a webpage,
108108

109109
```html
110-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/math-base-tools-lucaspoly@umd/browser.js"></script>
110+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/math-base-tools-lucaspoly@v0.2.1-umd/browser.js"></script>
111111
```
112112

113113
If no recognized module system is present, access bundle contents via the global scope:
@@ -168,7 +168,7 @@ v = polyval( 2.0 ); // => 2^5 + 5*2^3 + 5*2
168168
<!DOCTYPE html>
169169
<html lang="en">
170170
<body>
171-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/math-base-tools-lucaspoly@umd/browser.js"></script>
171+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/math-base-tools-lucaspoly@v0.2.1-umd/browser.js"></script>
172172
<script type="text/javascript">
173173
(function () {
174174

0 commit comments

Comments
 (0)