From 51c2efd6015cc611cbe306495ccf3b7a6bfc0c26 Mon Sep 17 00:00:00 2001 From: Sophia Yang <39501859+sophiamyang@users.noreply.github.com> Date: Sat, 16 Apr 2022 21:07:44 -0500 Subject: [PATCH] Update README.md fixed two typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3fb650fa..be16ae4c 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ To try PyScript, import the pyscript to your html page with: ``` At that point, you can then use PyScript components in your html page. PyScript currently implements the following elements: -* ``: that can be used to define python code that is execute withing the web page. The element itself is not rendered to the page and only used to add logic -* ``: creates a REPL component that is rendered to the page as a code editor and allows users to right code that can be executed +* ``: that can be used to define python code that is executable within the web page. The element itself is not rendered to the page and only used to add logic +* ``: creates a REPL component that is rendered to the page as a code editor and allows users to write code that can be executed Check out the `/examples` folder for more examples on how to use it, all you need to do is open them in Chrome.