From: Brandon Hubacher Date: Sat, 8 Nov 2025 09:08:19 +0000 (-0600) Subject: fix typos in contextvars asyncio support example docs (#141219) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1785129c3b1b020e1523ff4f0d4314b9854d0e3;p=thirdparty%2FPython%2Fcpython.git fix typos in contextvars asyncio support example docs (#141219) Co-authored-by: Kumar Aditya --- 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: