From 7ed03c602540e15a5ce1bc16c6b5c2f5783f2b6b Mon Sep 17 00:00:00 2001 From: Timothy McCallum Date: Mon, 2 May 2022 14:27:25 +1000 Subject: [PATCH] Replace of with or I think this paragraph was meaning to say **or** i.e. `number types | vectors | reference types` --- document/core/exec/runtime.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/document/core/exec/runtime.rst b/document/core/exec/runtime.rst index 482eea0ad7..5bd6de2574 100644 --- a/document/core/exec/runtime.rst +++ b/document/core/exec/runtime.rst @@ -18,7 +18,7 @@ Runtime Structure Values ~~~~~~ -WebAssembly computations manipulate *values* of either the four basic :ref:`number types `, i.e., :ref:`integers ` and :ref:`floating-point data ` of 32 or 64 bit width each, of :ref:`vectors ` of 128 bit width, or of :ref:`reference type `. +WebAssembly computations manipulate *values* of either the four basic :ref:`number types `, i.e., :ref:`integers ` and :ref:`floating-point data ` of 32 or 64 bit width each, or :ref:`vectors ` of 128 bit width, or of :ref:`reference type `. In most places of the semantics, values of different types can occur. In order to avoid ambiguities, values are therefore represented with an abstract syntax that makes their type explicit.