summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'content/fate_v1/computations/_index.md')
-rw-r--r--content/fate_v1/computations/_index.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/fate_v1/computations/_index.md b/content/fate_v1/computations/_index.md
index e8a8816..9b835de 100644
--- a/content/fate_v1/computations/_index.md
+++ b/content/fate_v1/computations/_index.md
@@ -1,9 +1,8 @@
---
title: Computations
-weight: 2
+weight: 3
---
-Computations are values. They may read from the memory, but do not modify it
-(with a single exception).
+Computations are operations returning values. They do not modify the memory.
### TEXT
{{< fatecode >}}(text [C0 = COMPUTATION] ... [CN = COMPUTATION]){{< /fatecode >}}
@@ -36,7 +35,8 @@ Returns the value of the `{String}` field of the structure `[STRUCTURE]`.
### TEMPORARY VARIABLES
{{< fatecode >}}(let (({V0 = String} [C0 = COMPUTATION]) ... ({VN = String} [CN = COMPUTATION])) [R = COMPUTATION]){{< /fatecode >}}
-Defines a hierarchical level and local variables `V0` ... `VN` with values `C0` ... `CN`, and returns the value of `[R]`.
+Defines a hierarchical level and local variables `{V0}` ... `{VN}` with values
+`[C0]` ... `[CN]`, and returns the value of `[R]`.
### CAST
{{< fatecode >}}(cast [TYPE] [COMPUTATION*]){{< /fatecode >}}