From c4e57fb6df15266920941b732ef3a58fb619d851 Mon Sep 17 00:00:00 2001 From: Maksym Medvied <5236517+medvied@users.noreply.github.com> Date: Sat, 10 Sep 2022 22:14:01 +0400 Subject: [PATCH] Fix typo in 3.12 whatsnew (GH-96740) --- Doc/whatsnew/3.12.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index 70a1104127e..27285de1984 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -118,7 +118,7 @@ dis do not appear in executable bytecode) are now exposed in the :mod:`dis` module. :data:`~dis.HAVE_ARGUMENT` is still relevant to real opcodes, - but it is not useful for pseudo instrcutions. Use the new + but it is not useful for pseudo instructions. Use the new :data:`~dis.hasarg` collection instead. (Contributed by Irit Katriel in :gh:`94216`.)