aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution')
-rw-r--r--src/Execution/Runtime.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Execution/Runtime.php b/src/Execution/Runtime.php
index 08600e5..58e2169 100644
--- a/src/Execution/Runtime.php
+++ b/src/Execution/Runtime.php
@@ -1765,7 +1765,7 @@ final class Runtime
$s_ = ($d < $s) ? ($s + $i) : ($s + $n - 1 - $i);
$d_ = ($d < $s) ? ($d + $i) : ($d + $n - 1 - $i);
// @phpstan-ignore-next-line
- $tabX->elem[$d] = $tabY->elem[$s];
+ $tabX->elem[$d_] = $tabY->elem[$s_];
}
}