From b865a3579a8d9c10fc9de46fc8d76932060f6885 Mon Sep 17 00:00:00 2001 From: Chris Gyurgyik <37983775+cgyurgyik@users.noreply.github.com> Date: Sat, 26 Dec 2020 20:41:23 -0500 Subject: [PATCH] srrings to strings --- docs/lang/syntax.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/lang/syntax.md b/docs/lang/syntax.md index 088a1d52e..606b97a34 100644 --- a/docs/lang/syntax.md +++ b/docs/lang/syntax.md @@ -97,7 +97,7 @@ It has the `dest` and `type` fields described above, and also: { "op": "", "dest": "", "type": , "args": ["", ...]?, "funcs": ["", ...]?, - "labels": ["", ...]? } + "labels": ["", ...]? } A Value Operation is an instruction that takes arguments, does some computation, and produces a value. Like a Constant, it has the `dest` and `type` fields described above, and also any of these three optional fields: @@ -116,7 +116,7 @@ In all three cases, these keys may be missing and the semantics are identical to { "op": "", "args": ["", ...]?, "funcs": ["", ...]?, - "labels": ["", ...]? } + "labels": ["", ...]? } An Effect Operation is like a Value Operation but it does not produce a value. It also has the optional `args`, `funcs`, and `labels` fields.