From fab56156dffbc078957ccd30629b552c433c635a Mon Sep 17 00:00:00 2001 From: Codex Date: Mon, 13 Apr 2026 10:08:10 +0800 Subject: [PATCH] docs: fix URL docstring typos --- httpcore/_models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httpcore/_models.py b/httpcore/_models.py index 8a65f133..5d9e872b 100644 --- a/httpcore/_models.py +++ b/httpcore/_models.py @@ -183,13 +183,13 @@ class URL: """ Represents the URL against which an HTTP request may be made. - The URL may either be specified as a plain string, for convienence: + The URL may either be specified as a plain string, for convenience: ```python url = httpcore.URL("https://www.example.com/") ``` - Or be constructed with explicitily pre-parsed components: + Or be constructed with explicitly pre-parsed components: ```python url = httpcore.URL(scheme=b'https', host=b'www.example.com', port=None, target=b'/')