Skip to content

Commit e1572ea

Browse files
[3.13] Fix a typo in STORE_SLICE docs (GH-143500) (#143534)
Fix a typo in STORE_SLICE docs (GH-143500) (cherry picked from commit 228d955) Co-authored-by: Tomas R <tomas.roun8@gmail.com>
1 parent ad99027 commit e1572ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/dis.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ not have to be) the original ``STACK[-2]``.
716716
end = STACK.pop()
717717
start = STACK.pop()
718718
container = STACK.pop()
719-
values = STACK.pop()
719+
value = STACK.pop()
720720
container[start:end] = value
721721

722722
.. versionadded:: 3.12

0 commit comments

Comments
 (0)