Fix broken docs (#415)

* Fix broken link to parallel request page

* Fix incomplete code block on quickstart page
This commit is contained in:
Dustin Ingram 2019-09-30 14:19:53 -05:00 committed by Yeray Diaz Diaz
parent 05f5dc26de
commit 5df822ca11
2 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,7 @@ The async response methods are:
* `.raw()`
* `.close()`
If you're making [parallel requests](/parallel/), then you'll also need to use an async API:
If you're making [parallel requests](../parallel/), then you'll also need to use an async API:
```python
>>> async with httpx.AsyncClient() as client:

View File

@ -401,3 +401,4 @@ as above:
>>> auth = httpx.DigestAuth("my_user", "password123")
>>> httpx.get("https://example.com", auth=auth)
<Response [200 OK]>
```