Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions httpcore/_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'/')
Expand Down
Loading