From 74773351db60927b3128e3c7a9361582b3386ba1 Mon Sep 17 00:00:00 2001 From: Michal Srutek Date: Sat, 2 Mar 2024 07:24:37 +0100 Subject: [PATCH] Fix decreases typo --- rossum_api/api_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rossum_api/api_client.py b/rossum_api/api_client.py index 812aea2..fd5118c 100644 --- a/rossum_api/api_client.py +++ b/rossum_api/api_client.py @@ -258,7 +258,7 @@ async def _fetch_page(page_number): for r in results: yield r # Await requests one by one to yield results in correct order to ensure the same order of - # results next time the same resource is fetched. This slightly descreases throughput. + # results next time the same resource is fetched. This slightly decreases throughput. for request in page_requests: results, _ = await request for r in results: