@@ -2037,7 +2037,7 @@ associated types from the DEC.
2037
2037
The kinds of questions one can ask regarding the dependent entities
2038
2038
within an expression are as follows:
2039
2039
2040
- * What user defined or local variables, vectors or strings are used?
2040
+ * What user defined variables, vectors or strings are used?
2041
2041
* What functions or custom user functions are used?
2042
2042
* Which variables, vectors or strings have values assigned to them?
2043
2043
@@ -2105,13 +2105,13 @@ associated assignments:
2105
2105
(1) x x := y + z
2106
2106
(2) x, y x += y += z
2107
2107
(3) x, y, z x := y += sin(z := w + 2)
2108
- (4) z, w if (x > y, z := x + 2, w := 'A String')
2108
+ (4) w, z if (x > y, z := x + 2, w := 'A String')
2109
2109
(5) None x + y + z
2110
2110
2111
2111
2112
2112
Note: In expression 4, both variables 'z' and 'w' are denoted as being
2113
- assignments even though only one of them can be modified at the time
2114
- of evaluation. Furthermore the determination of which of the two
2113
+ assignments even though only one of them can ever be modified at the
2114
+ time of evaluation. Furthermore the determination of which of the two
2115
2115
variables the modification will occur upon can only be known with
2116
2116
certainty at evaluation time and not beforehand, hence both are listed
2117
2117
as being candidates for assignment.
@@ -2483,7 +2483,7 @@ default USR. The following are some example expressions:
2483
2483
(2) sine(y / 2) - coz(3x)
2484
2484
2485
2485
2486
- The two expression above contain misspelt symbols (abz, sine, coz)
2486
+ The two expressions above contain misspelt symbols (abz, sine, coz)
2487
2487
which if implied multiplications and default USR are enabled during
2488
2488
compilation will result in them being assumed to be valid 'variables',
2489
2489
which obviously is not the intended outcome by the user. A possible
0 commit comments