From a79963d205567a3034c9999493eb844a4da4a6af Mon Sep 17 00:00:00 2001 From: Davi Alexandre <51335970+davi-alexandre@users.noreply.github.com> Date: Mon, 2 May 2022 21:22:28 -0300 Subject: [PATCH] fixing a typo --- GETTING-STARTED.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GETTING-STARTED.md b/GETTING-STARTED.md index a61547c162e..88033c0d457 100644 --- a/GETTING-STARTED.md +++ b/GETTING-STARTED.md @@ -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. @@ -46,7 +46,7 @@ introduce the 8 tags provided by PyScript. The `` 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 @@ -153,7 +153,7 @@ fig ### Local modules In addition to packages you can declare local Python modules that will -be imported in the `` tag. For example we can place the random +be imported in the `` tag. For example, we can place the random number generation steps in a function in the file `data.py`. ```python @@ -197,4 +197,4 @@ fig -``` \ No newline at end of file +```