Skip to content

Commit

Permalink
Merge pull request #47 from pyscript/fpliger/hotfix_release_link
Browse files Browse the repository at this point in the history
fix wrong link to release
  • Loading branch information
fpliger committed Nov 11, 2023
2 parents 7f993a2 + e91aa04 commit 2934970
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/beginning-pyscript.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ module in the document's `<head>` tag:
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>🦜 Polyglot - Piratical PyScript</title>
<script type="module" src="https://pyscript.net/snapshots/2023.11.1/core.js"></script>
<script type="module" src="https://pyscript.net/releases/2023.11.1/core.js"></script>
</head>
<body>

Expand Down Expand Up @@ -155,7 +155,7 @@ In the end, our HTML should look like this:
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>🦜 Polyglot - Piratical PyScript</title>
<script type="module" src="https://pyscript.net/snapshots/2023.11.1/core.js"></script>
<script type="module" src="https://pyscript.net/releases/2023.11.1/core.js"></script>
</head>
<body>
<h1>Polyglot 🦜 💬 🇬🇧 ➡️ 🏴‍☠️</h1>
Expand Down
4 changes: 2 additions & 2 deletions docs/user-guide/first-steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ CSS:
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!-- PyScript CSS -->
<link rel="stylesheet" href="https://pyscript.net/snapshots/2023.11.1/core.css">
<link rel="stylesheet" href="https://pyscript.net/releases/2023.11.1/core.css">
<!-- This script tag bootstraps PyScript -->
<script type="module" src="https://pyscript.net/snapshots/2023.11.1/core.js"></script>
<script type="module" src="https://pyscript.net/releases/2023.11.1/core.js"></script>
</head>
<body>
<!-- your code goes here... -->
Expand Down

0 comments on commit 2934970

Please sign in to comment.