diff --git a/aiohttp/payload.py b/aiohttp/payload.py index a26a8a1f357..ba856693eed 100644 --- a/aiohttp/payload.py +++ b/aiohttp/payload.py @@ -421,7 +421,7 @@ def __init__(self, value: _AsyncIterable, *args: Any, **kwargs: Any) -> None: if not isinstance(value, AsyncIterable): raise TypeError( "value argument must support " - "collections.abc.AsyncIterablebe interface, " + "collections.abc.AsyncIterable interface, " "got {!r}".format(type(value)) )