diff --git a/README.md b/README.md index 06759f3..ff7a7b9 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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")