Skip to content

Commit 251b378

Browse files
committed
Update README.md for UMD bundle v0.2.1
1 parent e5c5b1e commit 251b378

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The [golden ratio][phi] can be defined algebraically as
6565
To use in Observable,
6666

6767
```javascript
68-
PHI = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/constants-float64-phi@umd/browser.js' )
68+
PHI = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/constants-float64-phi@v0.2.1-umd/browser.js' )
6969
```
7070

7171
To vendor stdlib functionality and avoid installing dependency trees for Node.js, you can use the UMD server build:
@@ -77,7 +77,7 @@ var PHI = require( 'path/to/vendor/umd/constants-float64-phi/index.js' )
7777
To include the bundle in a webpage,
7878

7979
```html
80-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/constants-float64-phi@umd/browser.js"></script>
80+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/constants-float64-phi@v0.2.1-umd/browser.js"></script>
8181
```
8282

8383
If no recognized module system is present, access bundle contents via the global scope:
@@ -115,7 +115,7 @@ var bool = ( PHI === 1.618033988749895 );
115115
<!DOCTYPE html>
116116
<html lang="en">
117117
<body>
118-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/constants-float64-phi@umd/browser.js"></script>
118+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/constants-float64-phi@v0.2.1-umd/browser.js"></script>
119119
<script type="text/javascript">
120120
(function () {
121121

0 commit comments

Comments
 (0)