10000 fixing a couple typos by ddeltree · Pull Request #132 · pyscript/pyscript · GitHub
[go: up one dir, main page]

Skip to content

fixing a couple typos #132

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions GETTING-STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This page will guide you through getting started with PyScript.
PyScript does not require any development environment other
than a web browser. We recommend using Chrome.

If, you're using [VSCode](https://code.visualstudio.com/) the
If you're using [VSCode](https://code.visualstudio.com/) the
[Live Server extension](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer)
can be used to reload the page as you edit the HTML file.

Expand Down Expand Up @@ -46,7 +46,7 @@ introduce the 8 tags provided by PyScript.

The `<py-script>` tag let's you execute multi-line Python scripts and
print back onto the page. For
example we can compute π.
example, we can compute π.

```html
<html>
Expand Down Expand Up @@ -162,7 +162,7 @@ fig
### Local modules

In addition to packages you can declare local Python modules that will
be imported in the `<py-script>` tag. For example we can place the random
be imported in the `<py-script>` tag. For example, we can place the random
number generation steps in a function in the file `data.py`.

```python
Expand Down
0