From 07bbffc556aec7a7a4aeaf8874df096c039d6956 Mon Sep 17 00:00:00 2001 From: nocturn9x Date: Fri, 13 Nov 2020 13:03:46 +0100 Subject: [PATCH] typos --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 90ebdb3..3339c8b 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Starting to see where we're heading? giambio has been designed with simplicity in mind, so this README won't explain all the gritty details about _how_ async is implemented in Python (you might want to check out [this article](https://snarky.ca/how-the-heck-does-async-await-work-in-python-3-5/) if you want to learn more about all the implementation details). -For the sake of this tutorial, all you need to know is that functions defined giambio is all about a feature added in Python 3.5: +For the sake of this tutorial, all you need to know is that giambio is all about a feature added in Python 3.5: asynchronous functions, or 'async' for short. Async functions are functions defined with `async def` instead of the regular `def`, like so: ```python