Update instructions.rst (#995)
use `local.get` name instead of `get_local` which isn't used elsewhere.
diff --git a/document/core/text/instructions.rst b/document/core/text/instructions.rst
index 2ced672..1118207 100644
--- a/document/core/text/instructions.rst
+++ b/document/core/text/instructions.rst
@@ -449,12 +449,12 @@
For example, the instruction sequence
.. math::
- \mathtt{(get\_local~\$x)~(i32.const~2)~i32.add~(i32.const~3)~i32.mul}
+ \mathtt{(local.get~\$x)~(i32.const~2)~i32.add~(i32.const~3)~i32.mul}
can be folded into
.. math::
- \mathtt{(i32.mul~(i32.add~(get\_local~\$x)~(i32.const~2))~(i32.const~3))}
+ \mathtt{(i32.mul~(i32.add~(local.get~\$x)~(i32.const~2))~(i32.const~3))}
Folded instructions are solely syntactic sugar,
no additional syntactic or type-based checking is implied.