]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Fix broken docs (#415)
authorDustin Ingram <di@users.noreply.github.com>
Mon, 30 Sep 2019 19:19:53 +0000 (14:19 -0500)
committerYeray Diaz Diaz <yeraydiazdiaz@fastmail.com>
Mon, 30 Sep 2019 19:19:53 +0000 (20:19 +0100)
* Fix broken link to parallel request page

* Fix incomplete code block on quickstart page

docs/async.md
docs/quickstart.md

index feda22d472622df264d84968a0b04a1e0181a17a..c0e4a68991de82121bfe095a16ad516a28fc400d 100644 (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:
index 784072dfc7868033519558af0100a8e31c99dbcd..a142f51e28ea4167e5320b8b6a0df6b03722530d 100644 (file)
@@ -401,3 +401,4 @@ as above:
 >>> auth = httpx.DigestAuth("my_user", "password123")
 >>> httpx.get("https://example.com", auth=auth)
 <Response [200 OK]>
+```