summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'content/fate_v1/instructions/_index.md')
-rw-r--r--content/fate_v1/instructions/_index.md20
1 files changed, 12 insertions, 8 deletions
diff --git a/content/fate_v1/instructions/_index.md b/content/fate_v1/instructions/_index.md
index ec5b413..95ee992 100644
--- a/content/fate_v1/instructions/_index.md
+++ b/content/fate_v1/instructions/_index.md
@@ -30,18 +30,22 @@ Gives the value `[COMPUTATION]` to `[REFERENCE]`.
### VISIT SEQUENCE
{{< fatecode >}}(visit {String} [C0 = COMPUTATION] ... [CN = COMPUTATION]){{< /fatecode >}}
-Visits the sequence named `{String}`, with `C0` ... `CN` as arguments. That
-sequence does not need to already have been defined. Visiting a sequence means
-that the execution of the current sequence continues once the visited sequence
-has completed.
+{{< fatecode >}}(visit [SEQUENCE] [C0 = COMPUTATION] ... [CN = COMPUTATION]){{< /fatecode >}}
+
+Visits the sequence named `{String}` (or stored in `[SEQUENCE]`), with `C0` ...
+`CN` as arguments. That sequence does not need to already have been defined.
+Visiting a sequence means that the execution of the current sequence continues
+once the visited sequence has completed.
### JUMP TO SEQUENCE
{{< fatecode >}}(jump_to {String} [C0 = COMPUTATION] ... [CN = COMPUTATION]){{< /fatecode >}}
-Jumps to the sequence named `{String}`, with `C0` ... `CN` as arguments. That
-sequence does not need to already have been defined. Jumping to a sequence means
-that the execution of the current sequence is replaced by that of the target
-sequence.
+{{< fatecode >}}(jump_to [SEQUENCE] [C0 = COMPUTATION] ... [CN = COMPUTATION]){{< /fatecode >}}
+
+Jumps to the sequence named `{String}` (or stored in `[SEQUENCE]`), with `C0`
+... `CN` as arguments. That sequence does not need to already have been
+defined. Jumping to a sequence means that the execution of the current sequence
+is replaced by that of the target sequence.
### INSTRUCTION LIST
{{< fatecode >}}([C0 = INSTRUCTION] ... [CN = INSTRUCTION]){{< /fatecode >}}