]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix typos in contextvars asyncio support example docs (#141219)
authorBrandon Hubacher <brandon.hubacher@gmail.com>
Sat, 8 Nov 2025 09:08:19 +0000 (03:08 -0600)
committerGitHub <noreply@github.com>
Sat, 8 Nov 2025 09:08:19 +0000 (09:08 +0000)
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Doc/library/contextvars.rst

index 57580ce026e96ac2366dd5f3ed19323cac155493..b218468a084db1b2e685309558dc587c80514558 100644 (file)
@@ -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: