From 5b360c968344daeae85d5c1c8a4242dda352edc5 Mon Sep 17 00:00:00 2001 From: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com> Date: Wed, 7 Sep 2022 01:10:16 -0500 Subject: [PATCH] fix typo in README.md (#33) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e0dbb05..a8b04e5 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ class PersonExecutor(PostgresExecutor): async def run(): executor = PersonExecutor() Mayim(dsn="postgres://...") - print(await executor.select_all_cities()) + print(await executor.select_all_people()) asyncio.run(run())