]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Minor docstring tweak
authorTom Christie <tom@tomchristie.com>
Mon, 13 May 2019 15:54:41 +0000 (16:54 +0100)
committerTom Christie <tom@tomchristie.com>
Mon, 13 May 2019 15:54:41 +0000 (16:54 +0100)
httpcore/interfaces.py

index f374a3bd77008199a5d838dbc4a92d199e4fa4ee..8025de3e1bcb0fe1b1a2861b66731ecf96e133c2 100644 (file)
@@ -24,10 +24,10 @@ class Protocol(str, enum.Enum):
 
 class Dispatcher:
     """
-    The base class for all adapter or dispatcher classes.
+    Base class for dispatcher classes, that handle sending the request.
 
     Stubs out the interface, as well as providing a `.request()` convienence
-    implementation, to make it easy to use or test stand-alone adapters,
+    implementation, to make it easy to use or test stand-alone dispatchers,
     without requiring a complete `Client` instance.
     """