diff --git a/README.rst b/README.rst index 3e78af5..1b38709 100644 --- a/README.rst +++ b/README.rst @@ -40,7 +40,7 @@ Plus built-in concurrency control to do multiple requests safely: responses = await requests.get(['https://api.github.com'] * 2, auth=aiohttp.BasicAuth('user', 'password')) print(responses) # [, , ] - # It defaults to 10 concurrent requests. If you can handle more, then set it higher: + # It defaults to 10 concurrent requests maximum. If you can handle more, then set it higher: requests.max_concurrency = 100 asyncio.run(main())