From 28f00b23bf55ea46512e6a6be6dce164f8bc8575 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Sat, 20 Nov 2021 14:55:09 +0900 Subject: doc/opcode.md: update according to #5579 --- doc/opcode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/opcode.md b/doc/opcode.md index 113e390e8..11f2133c6 100644 --- a/doc/opcode.md +++ b/doc/opcode.md @@ -97,7 +97,7 @@ sign) of operands. | `OP_ARYPUSH` | `BB` | `ary_push(R(a),R(a+1)..R(a+b))` | | `OP_ARYDUP` | `B` | `R(a) = ary_dup(R(a))` | | `OP_AREF` | `BBB` | `R(a) = R(b)[c]` | -| `OP_ASET` | `BBB` | `R(a)[c] = R(b)` | +| `OP_ASET` | `BBB` | `R(b)[c] = R(a)` | | `OP_APOST` | `BBB` | `*R(a),R(a+1)..R(a+c) = R(a)[b..]` | | `OP_INTERN` | `B` | `R(a) = intern(R(a))` | | `OP_STRING` | `BB` | `R(a) = str_dup(Pool(b))` | -- cgit v1.2.3