diff --git a/rq/connections.py b/rq/connections.py
index 792eb4f..0d39e43 100644
--- a/rq/connections.py
+++ b/rq/connections.py
@@ -32,7 +32,7 @@ def Connection(connection: Optional['Redis'] = None):  # noqa
         connection (Optional[Redis], optional): A Redis Connection instance. Defaults to None.
     """
     warnings.warn(
-        "The Conneciton context manager is deprecated. Use the `connection` parameter instead.",
+        "The Connection context manager is deprecated. Use the `connection` parameter instead.",
         DeprecationWarning,
     )
     if connection is None: