Skip to content

Commit 9ab5a24

Browse files
[3.14] Fix a typo in STORE_SLICE docs (GH-143500) (#143533)
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 76afbe2 commit 9ab5a24

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
@@ -768,7 +768,7 @@ not have to be) the original ``STACK[-2]``.
768768
end = STACK.pop()
769769
start = STACK.pop()
770770
container = STACK.pop()
771-
values = STACK.pop()
771+
value = STACK.pop()
772772
container[start:end] = value
773773

774774
.. versionadded:: 3.12

0 commit comments

Comments
 (0)