* Fix typo
three greater-than signs -> three dots
* Fix typo
three greater-than signs -> three dots
* Fix typo
three greater-than signs -> three dots
```pycon
>>> import httpx
>>> async with httpx.AsyncClient() as client:
->>> r = await client.get('https://www.example.org/')
+... r = await client.get('https://www.example.org/')
+...
>>> r
<Response [200 OK]>
```
```pycon
>>> async with httpx.AsyncClient() as client:
->>> r = await client.get('https://www.example.com/')
+... r = await client.get('https://www.example.com/')
+...
>>> r
<Response [200 OK]>
```
```pycon
>>> client = httpx.AsyncClient()
>>> async with client.stream('GET', 'https://www.example.com/') as response:
->>> async for chunk in response.aiter_bytes():
->>> ...
+... async for chunk in response.aiter_bytes():
+... ...
```
The async response streaming methods are:
```pycon
>>> import httpx
>>> async with httpx.AsyncClient() as client:
->>> r = await client.get('https://www.example.org/')
+... r = await client.get('https://www.example.org/')
+...
>>> r
<Response [200 OK]>
```