Skip to content

Commit 2934970

Browse files
authored
Merge pull request #47 from pyscript/fpliger/hotfix_release_link
fix wrong link to release
2 parents 7f993a2 + e91aa04 commit 2934970

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/beginning-pyscript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ module in the document's `<head>` tag:
106106
<meta charset="utf-8" />
107107
<meta name="viewport" content="width=device-width,initial-scale=1" />
108108
<title>🦜 Polyglot - Piratical PyScript</title>
109-
<script type="module" src="https://pyscript.net/snapshots/2023.11.1/core.js"></script>
109+
<script type="module" src="https://pyscript.net/releases/2023.11.1/core.js"></script>
110110
</head>
111111
<body>
112112

@@ -155,7 +155,7 @@ In the end, our HTML should look like this:
155155
<meta charset="utf-8" />
156156
<meta name="viewport" content="width=device-width,initial-scale=1" />
157157
<title>🦜 Polyglot - Piratical PyScript</title>
158-
<script type="module" src="https://pyscript.net/snapshots/2023.11.1/core.js"></script>
158+
<script type="module" src="https://pyscript.net/releases/2023.11.1/core.js"></script>
159159
</head>
160160
<body>
161161
<h1>Polyglot 🦜 💬 🇬🇧 ➡️ 🏴‍☠️</h1>

docs/user-guide/first-steps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ CSS:
2020
<meta charset="UTF-8">
2121
<meta name="viewport" content="width=device-width,initial-scale=1.0">
2222
<!-- PyScript CSS -->
23-
<link rel="stylesheet" href="https://pyscript.net/snapshots/2023.11.1/core.css">
23+
<link rel="stylesheet" href="https://pyscript.net/releases/2023.11.1/core.css">
2424
<!-- This script tag bootstraps PyScript -->
25-
<script type="module" src="https://pyscript.net/snapshots/2023.11.1/core.js"></script>
25+
<script type="module" src="https://pyscript.net/releases/2023.11.1/core.js"></script>
2626
</head>
2727
<body>
2828
<!-- your code goes here... -->

0 commit comments

Comments
 (0)