https://github.com/python/cpython/commit/c1785129c3b1b020e1523ff4f0d4314b9854d0e3 commit: c1785129c3b1b020e1523ff4f0d4314b9854d0e3 branch: main author: Brandon Hubacher <[email protected]> committer: kumaraditya303 <[email protected]> date: 2025-11-08T09:08:19Z summary:
fix typos in contextvars asyncio support example docs (#141219) Co-authored-by: Kumar Aditya <[email protected]> files: M Doc/library/contextvars.rst diff --git a/Doc/library/contextvars.rst b/Doc/library/contextvars.rst index 57580ce026e96a..b218468a084db1 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: _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
