summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorJonathon Vandezande <jevandezande@gmail.com>2024-08-02 01:31:37 (GMT)
committerGitHub <noreply@github.com>2024-08-02 01:31:37 (GMT)
commitdbdbef3668293abdceac2b8a7b3e4615e6bde143 (patch)
treeb0513f1240d73e88d9f09bfce9a07b041333d0cd /Lib/idlelib
parent8234419c32b9890689e26da936882bc1e9ee161f (diff)
downloadcpython-dbdbef3668293abdceac2b8a7b3e4615e6bde143.zip
cpython-dbdbef3668293abdceac2b8a7b3e4615e6bde143.tar.gz
cpython-dbdbef3668293abdceac2b8a7b3e4615e6bde143.tar.bz2
Fixes typo in idlelib/idle_test/example_stub.pyi (#122520)
--------- Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/idle_test/example_stub.pyi2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/example_stub.pyi b/Lib/idlelib/idle_test/example_stub.pyi
index 17b5801..abcdbc1 100644
--- a/Lib/idlelib/idle_test/example_stub.pyi
+++ b/Lib/idlelib/idle_test/example_stub.pyi
@@ -1,4 +1,4 @@
-" Example to test recognition of .pyi file as Python source code.
+# An example file to test recognition of a .pyi file as Python source code.
class Example:
def method(self, argument1: str, argument2: list[int]) -> None: ...