Skip to content

Commit

Permalink
Update README.md (#53)
Browse files Browse the repository at this point in the history
Corrected spelling Rep -> Repo
Removed the `Why` from `Why hello there`
  • Loading branch information
kishankarun authored Aug 17, 2024
1 parent f07e839 commit d0a7347
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ PuePy is a lightweight web framework that uses WebAssembly via [PyScript](https:

## 🐒 Try a demo app

See [ExpenseLemur.com](https://expenselemur.com) and the [Expense Lemur Github Rep](https://github.com/kkinder/expenselemur) for a demonstration of what PuePy is capable of.
See [ExpenseLemur.com](https://expenselemur.com) and the [Expense Lemur Github Repo](https://github.com/kkinder/expenselemur) for a demonstration of what PuePy is capable of.

## 🧑‍💻 See some code

Expand All @@ -31,7 +31,7 @@ class Hello(Page):
with t.div(classes=["container", "mx-auto", "p-4"]):
t.h1("Welcome to PyScript", classes=["text-xl", "pb-4"])
if self.state["name"]:
t.p(f"Why hello there, {self.state['name']}")
t.p(f"Hello there, {self.state['name']}")
else:
t.p("Why don't you tell me your name?")
t.input(placeholder="Enter your name", bind="name")
Expand Down

0 comments on commit d0a7347

Please sign in to comment.