From 4b85e6c3898b94e686b427afd83138c87520b479 Mon Sep 17 00:00:00 2001 From: "Michiel W. Beijen" Date: Fri, 12 Apr 2024 08:11:12 +0200 Subject: [PATCH] Docs: fix small typos in Extensions doc (#3138) Co-authored-by: Tom Christie --- docs/advanced/extensions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced/extensions.md b/docs/advanced/extensions.md index 9eafebd405..d9208ccdb3 100644 --- a/docs/advanced/extensions.md +++ b/docs/advanced/extensions.md @@ -2,7 +2,7 @@ Request and response extensions provide a untyped space where additional information may be added. -Extensions should be used for features that may not be available on all transports, and that do not fit neatly into [the simplified request/response model](https://www.encode.io/httpcore/extensions/) that the underlying `httpcore` pacakge uses as it's API. +Extensions should be used for features that may not be available on all transports, and that do not fit neatly into [the simplified request/response model](https://www.encode.io/httpcore/extensions/) that the underlying `httpcore` package uses as its API. Several extensions are supported on the request: @@ -239,4 +239,4 @@ with httpx.stream("GET", "https://www.example.com") as response: ssl_object = network_stream.get_extra_info("ssl_object") print("TLS version", ssl_object.version()) -``` \ No newline at end of file +```