From efc841a9e8e709f5cc40257927dd7461dc832330 Mon Sep 17 00:00:00 2001 From: wo0d Date: Tue, 23 Nov 2021 17:04:31 +0800 Subject: [PATCH] Fix typo on _merge_url (#1949) seperator -> separator --- httpx/_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpx/_client.py b/httpx/_client.py index 021128d5..5bfa4c6c 100644 --- a/httpx/_client.py +++ b/httpx/_client.py @@ -370,7 +370,7 @@ class BaseClient: if merge_url.is_relative_url: # To merge URLs we always append to the base URL. To get this # behaviour correct we always ensure the base URL ends in a '/' - # seperator, and strip any leading '/' from the merge URL. + # separator, and strip any leading '/' from the merge URL. # # So, eg... #