Skip to content

Commit

Permalink
Fix order of handler entrance (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieTap authored Sep 13, 2024
1 parent 67436f2 commit 79323b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions document/core/exec/instructions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3145,9 +3145,9 @@ The following auxiliary rules define the semantics of entering and exiting |TRYT
Entering :math:`\instr^\ast` with label :math:`L` and exception handler :math:`H`
.................................................................................

1. Push :math:`L` to the stack.
1. Push :math:`H` to the stack.

2. Push :math:`H` onto the stack.
2. Push :math:`L` onto the stack.

3. Jump to the start of the instruction sequence :math:`\instr^\ast`.

Expand Down

0 comments on commit 79323b5

Please sign in to comment.