Skip to content

Commit

Permalink
Merge pull request #61 from michalsrutek/feature/fix-decreases-typo
Browse files Browse the repository at this point in the history
Fix decreases typo
  • Loading branch information
bara-m authored Mar 26, 2024
2 parents 31b7327 + db09423 commit c6db58b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rossum_api/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c6db58b

Please sign in to comment.