Skip to content

Commit ec0bb73

Browse files
committed
Update README.md for UMD bundle v0.2.0
1 parent 2ec0152 commit ec0bb73

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
@@ -50,7 +50,7 @@ limitations under the License.
5050
To use in Observable,
5151

5252
```javascript
53-
inherit = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/utils-inherit@umd/browser.js' )
53+
inherit = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/utils-inherit@v0.2.0-umd/browser.js' )
5454
```
5555

5656
To vendor stdlib functionality and avoid installing dependency trees for Node.js, you can use the UMD server build:
@@ -62,7 +62,7 @@ var inherit = require( 'path/to/vendor/umd/utils-inherit/index.js' )
6262
To include the bundle in a webpage,
6363

6464
```html
65-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/utils-inherit@umd/browser.js"></script>
65+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/utils-inherit@v0.2.0-umd/browser.js"></script>
6666
```
6767

6868
If no recognized module system is present, access bundle contents via the global scope:
@@ -124,7 +124,7 @@ inherit( Bar, Foo );
124124
<!DOCTYPE html>
125125
<html lang="en">
126126
<body>
127-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/utils-inherit@umd/browser.js"></script>
127+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/utils-inherit@v0.2.0-umd/browser.js"></script>
128128
<script type="text/javascript">
129129
(function () {
130130

0 commit comments

Comments
 (0)