From c609ee32b97d654c507372355f7661347456f5ff Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 6 Feb 2024 14:22:58 -0500 Subject: [PATCH] spelling: doesn't Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/debugpy/public_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debugpy/public_api.py b/src/debugpy/public_api.py index 9d0f705a..b1c15386 100644 --- a/src/debugpy/public_api.py +++ b/src/debugpy/public_api.py @@ -113,7 +113,7 @@ def listen( different from address if port was 0 in the latter, in which case the adapter will pick some unused ephemeral port to listen on. - This function does't wait for a client to connect to the debug + This function doesn't wait for a client to connect to the debug adapter that it starts. Use `wait_for_client` to block execution until the client connects. """ @@ -131,7 +131,7 @@ def connect(__endpoint: Endpoint | int, *, access_token: str | None = None) -> E `access_token` must be the same value that was passed to the adapter via the `--server-access-token` command-line switch. - This function does't wait for a client to connect to the debug + This function doesn't wait for a client to connect to the debug adapter that it connects to. Use `wait_for_client` to block execution until the client connects. """