From b2c611debff47ebb37b5ea34fbbe4f465bbab0cc Mon Sep 17 00:00:00 2001 From: Ng Zhi An Date: Mon, 28 Mar 2022 22:28:19 +0000 Subject: [PATCH] Fix missing vectype from value types in binary format for types Fixed #1435. --- document/core/binary/types.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/document/core/binary/types.rst b/document/core/binary/types.rst index f77da6eae0..4850573544 100644 --- a/document/core/binary/types.rst +++ b/document/core/binary/types.rst @@ -69,12 +69,13 @@ Reference Types Value Types ~~~~~~~~~~~ -:ref:`Value types ` are encoded with their respective encoding as a :ref:`number type ` or :ref:`reference type `. +:ref:`Value types ` are encoded with their respective encoding as a :ref:`number type `, :ref:`vector type `, or :ref:`reference type `. .. math:: \begin{array}{llclll@{\qquad\qquad}l} \production{value type} & \Bvaltype &::=& t{:}\Bnumtype &\Rightarrow& t \\ &&|& + t{:}\Bvectype &\Rightarrow& t \\ &&|& t{:}\Breftype &\Rightarrow& t \\ \end{array}