summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2020-12-23 02:09:33 +0100
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2020-12-23 02:09:33 +0100
commitb5b30786abdb77dc0c1f9ed1be6d9c594b398b1a (patch)
tree8fcf531cacc82dcb7f154465fedce7497a8dbe87 /content/fate_v1/computations/_index.md
parent7272d83113545ec46b35ea440811dfc7da7634e1 (diff)
Adding some info on merge & parentheses.
Diffstat (limited to 'content/fate_v1/computations/_index.md')
-rw-r--r--content/fate_v1/computations/_index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/fate_v1/computations/_index.md b/content/fate_v1/computations/_index.md
index 71fe6f4..b9c4291 100644
--- a/content/fate_v1/computations/_index.md
+++ b/content/fate_v1/computations/_index.md
@@ -18,13 +18,13 @@ applicable. Structure members can be accessed by using `.` in `{String}`.
### STRUCTURE FIELD ACCESS
{{< fatecode >}}{Structure Var Name}.{Field Name}{{< /fatecode >}}
-{{< fatecode >}}(field [STRUCTURE VAR] {String}){{< /fatecode >}}
+{{< fatecode >}}(field {String} [STRUCTURE VAR]){{< /fatecode >}}
Accesses the `{String}` field of the structure `[STRUCTURE VAR]`. Using `.` to
access fields is recommended over the use of this operator.
### STRUCTURE FIELD VALUE
-{{< fatecode >}}(get_field [STRUCTURE] {String}){{< /fatecode >}}
+{{< fatecode >}}(get_field {String} [STRUCTURE]){{< /fatecode >}}
Returns the value of the `{String}` field of the structure `[STRUCTURE]`.
### TEMPORARY VARIABLES