From 6666b4fa621a197bf15be11df0e1eb29b8588143 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Wed, 28 Apr 2021 21:31:48 +0900 Subject: doc/opcode.md: stop reversed link syntax check from markdownlint. --- .github/linters/.markdown-lint.yml | 1 + doc/opcode.md | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/linters/.markdown-lint.yml b/.github/linters/.markdown-lint.yml index 8020fc062..671046203 100644 --- a/.github/linters/.markdown-lint.yml +++ b/.github/linters/.markdown-lint.yml @@ -3,6 +3,7 @@ MD003: false MD005: false MD007: false MD010: false +MD011: false MD013: false MD014: false MD024: false diff --git a/doc/opcode.md b/doc/opcode.md index aca3a0827..3ad09919c 100644 --- a/doc/opcode.md +++ b/doc/opcode.md @@ -101,9 +101,9 @@ sign) of operands. | OP_ARYCAT | B | ary_cat(R(a),R(a+1)) | | OP_ARYPUSH | B | ary_push(R(a),R(a+1)) | | 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_APOST | BBB | *R(a),R(a+1)..R(a+c) = R(a)[b..] | +| OP_AREF | BBB | R(a) = R(b)[c] | +| OP_ASET | BBB | R(a)[c] = R(b) | +| 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(Lit(b)) | | OP_STRING16 | BS | R(a) = str_dup(Lit(b)) | -- cgit v1.2.3