From e59d3e0cfb76baefbc90b6b936ea1f41c0e9bfbe Mon Sep 17 00:00:00 2001 From: Gabe Rust <35743165+gaberust@users.noreply.github.com> Date: Wed, 16 Feb 2022 21:24:47 -0500 Subject: [PATCH] Fix Typo in `getting_started.rst` Changed `ConectionRefusedError` to `ConnectionRefusedError` --- docs/getting_started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 18b71e93..96a5eb7b 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -277,7 +277,7 @@ client does not provide authentication details, then this argument is set to argument, then any authentication data passed by the cient is discarded. The connection event handler can return ``False`` to reject the connection, or -it can also raise `ConectionRefusedError`. This is so that the client can be +it can also raise `ConnectionRefusedError`. This is so that the client can be authenticated at this point. When using the exception, any arguments passed to the exception are returned to the client in the error packet. Examples::