From 3f3eb7ce3863fc87db76573e8c3d8638fdcb7154 Mon Sep 17 00:00:00 2001 From: Daniil Fajnberg Date: Sun, 13 Feb 2022 21:12:35 +0100 Subject: [PATCH] minor rephrasing --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c59578a..5cb6ffd 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ If you need control over a task pool at runtime, you can launch an asynchronous ## Usage -Generally speaking, a task is added to a pool by providing it with a coroutine function reference as well as the arguments for that function. Here is what that could look like: +Generally speaking, a task is added to a pool by providing it with a coroutine function reference as well as the arguments for that function. Here is what that could look like in the most simplified form: ```python from asyncio_taskpool import SimpleTaskPool ...