Skip to content

Commit 84176ea

Browse files
Apply suggestions from code review
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
1 parent d197a09 commit 84176ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/dis.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,10 +430,10 @@ STACK[-1] in this language.
430430

431431
.. opcode:: COPY (i)
432432

433-
Push the i-th to the top of the stack without removing it from its original
433+
Push the i-th item to the top of the stack without removing it from its original
434434
location.::
435435

436-
STACK.append(STACK[-i]
436+
STACK.append(STACK[-i])
437437

438438
.. versionadded:: 3.11
439439

0 commit comments

Comments
 (0)