Skip to content

Commit 932fbf8

Browse files
authored
[spec] Remove outdated footnote (#1389)
1 parent b6307dc commit 932fbf8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

document/core/intro/overview.rst

+1-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This language is structured around the following concepts.
5050
**Functions**
5151
Code is organized into separate *functions*.
5252
Each function takes a sequence of values as parameters
53-
and returns a sequence of values as results. [#arity]_
53+
and returns a sequence of values as results.
5454
Functions can call each other, including recursively,
5555
resulting in an implicit call stack that cannot be accessed directly.
5656
Functions may also declare mutable *local variables* that are usable as virtual registers.
@@ -96,8 +96,6 @@ This language is structured around the following concepts.
9696

9797
.. [#stackmachine] In practice, implementations need not maintain an actual operand stack. Instead, the stack can be viewed as a set of anonymous registers that are implicitly referenced by instructions. The :ref:`type system <validation>` ensures that the stack height, and thus any referenced register, is always known statically.
9898
99-
.. [#arity] In the current version of WebAssembly, there may be at most one result value.
100-
10199
102100
.. index:: phases, decoding, validation, execution, instantiation, invocation
103101

0 commit comments

Comments
 (0)