Skip to content

Commit 086a149

Browse files
committed
add JUMP_BACKWARD opcode macro to the Jumps section
JUMP_BACKWARD opcode macro added to the Jumps section in interpreter.md file at InternalDocs.
1 parent 1a8e574 commit 086a149

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

InternalDocs/interpreter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ already points to the next instruction.
112112
Thus, jump instructions can be implemented by manipulating `next_instr`:
113113

114114
- A jump forward (`JUMP_FORWARD`) sets `next_instr += oparg`.
115-
- A jump backward sets `next_instr -= oparg`.
115+
- A jump backward (`JUMP_BACKWARD`) sets `next_instr -= oparg`.
116116

117117
## Inline cache entries
118118

0 commit comments

Comments
 (0)