Skip to content

Commit b4cdb3f

Browse files
Kyle Pollinatirkarthi
authored andcommitted
Fix documentation in code.py (GH-17988)
1 parent f04750b commit b4cdb3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Doc/library/code.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Interactive Interpreter Objects
7676

7777
Compile and run some source in the interpreter. Arguments are the same as for
7878
:func:`compile_command`; the default for *filename* is ``'<input>'``, and for
79-
*symbol* is ``'single'``. One several things can happen:
79+
*symbol* is ``'single'``. One of several things can happen:
8080

8181
* The input is incorrect; :func:`compile_command` raised an exception
8282
(:exc:`SyntaxError` or :exc:`OverflowError`). A syntax traceback will be

Lib/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def runsource(self, source, filename="<input>", symbol="single"):
4040
4141
Arguments are as for compile_command().
4242
43-
One several things can happen:
43+
One of several things can happen:
4444
4545
1) The input is incorrect; compile_command() raised an
4646
exception (SyntaxError or OverflowError). A syntax traceback

0 commit comments

Comments
 (0)