Skip to content

Commit fab5615

Browse files
committed
docs: fix URL docstring typos
1 parent 10a6582 commit fab5615

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

httpcore/_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,13 @@ class URL:
183183
"""
184184
Represents the URL against which an HTTP request may be made.
185185
186-
The URL may either be specified as a plain string, for convienence:
186+
The URL may either be specified as a plain string, for convenience:
187187
188188
```python
189189
url = httpcore.URL("https://www.example.com/")
190190
```
191191
192-
Or be constructed with explicitily pre-parsed components:
192+
Or be constructed with explicitly pre-parsed components:
193193
194194
```python
195195
url = httpcore.URL(scheme=b'https', host=b'www.example.com', port=None, target=b'/')

0 commit comments

Comments
 (0)