From: Dustin Ingram Date: Mon, 30 Sep 2019 19:19:53 +0000 (-0500) Subject: Fix broken docs (#415) X-Git-Tag: 0.7.5~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5df822ca117bc9106b1333c5ccbfb61fb1932664;p=thirdparty%2Fhttpx.git Fix broken docs (#415) * Fix broken link to parallel request page * Fix incomplete code block on quickstart page --- diff --git a/docs/async.md b/docs/async.md index feda22d4..c0e4a689 100644 --- a/docs/async.md +++ b/docs/async.md @@ -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: diff --git a/docs/quickstart.md b/docs/quickstart.md index 784072df..a142f51e 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -401,3 +401,4 @@ as above: >>> auth = httpx.DigestAuth("my_user", "password123") >>> httpx.get("https://example.com", auth=auth) +```