closes bpo-35309: cpath should be capath (GH-10701)

(cherry picked from commit 158695817d736df8b18682866033c87e46252309)

Co-authored-by: BoĊĦtjan Mejak <bostjan.xperia@gmail.com>
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
index 5b962f7..d38f725 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -198,7 +198,7 @@
     global _opener
     if cafile or capath or cadefault:
         import warnings
-        warnings.warn("cafile, cpath and cadefault are deprecated, use a "
+        warnings.warn("cafile, capath and cadefault are deprecated, use a "
                       "custom context instead.", DeprecationWarning, 2)
         if context is not None:
             raise ValueError(