From c1785129c3b1b020e1523ff4f0d4314b9854d0e3 Mon Sep 17 00:00:00 2001 From: Brandon Hubacher Date: Sat, 8 Nov 2025 03:08:19 -0600 Subject: [PATCH] fix typos in contextvars asyncio support example docs (#141219) Co-authored-by: Kumar Aditya --- Doc/library/contextvars.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/contextvars.rst b/Doc/library/contextvars.rst index 57580ce026e9..b218468a084d 100644 --- a/Doc/library/contextvars.rst +++ b/Doc/library/contextvars.rst @@ -313,7 +313,7 @@ client:: addr = writer.transport.get_extra_info('socket').getpeername() client_addr_var.set(addr) - # In any code that we call is now possible to get + # In any code that we call, it is now possible to get the # client's address by calling 'client_addr_var.get()'. while True: -- 2.47.3