summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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