From: Tom Christie Date: Mon, 13 May 2019 13:42:06 +0000 (+0100) Subject: Minor README tweak X-Git-Tag: 0.3.0~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=813bb7c6d3825d0c0232ff832006203a192072ec;p=thirdparty%2Fhttpx.git Minor README tweak --- diff --git a/README.md b/README.md index 186a4e8d..28935391 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Making a request: >>> client = httpcore.Client() >>> response = client.get('https://example.com') >>> response.status_code - + >>> response.protocol 'HTTP/2' >>> response.text @@ -61,7 +61,7 @@ Alternatively, async requests: >>> client = httpcore.AsyncClient() >>> response = await client.get('https://example.com') >>> response.status_code - + >>> response.protocol 'HTTP/2' >>> response.text