From c59d6bf90ae322822cd1b1e69dea2d4c908eba35 Mon Sep 17 00:00:00 2001 From: Mikhail Terekhov Date: Fri, 4 Mar 2022 17:55:41 -0500 Subject: [PATCH] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8293112d..d0900ba2 100644 --- a/README.md +++ b/README.md @@ -1741,7 +1741,7 @@ Tasks will only be cancelled when run as a `before` callback or later. `AsyncMachine` features a model-special queue mode which can be used when `queued='model'` is passed to the constructor. With a model-specific queue, events will only be queued when they belong to the same model. Furthermore, a raised exception will only clear the event queue of the model that raised that exception. -For the sake of simplicity, let's assume that every event in `asyncion.gather` below is not triggered at the same time but slightly delayed: +For the sake of simplicity, let's assume that every event in `asyncio.gather` below is not triggered at the same time but slightly delayed: ```python asyncio.gather(model1.event1(), model1.event2(), model2.event1())