Skip to content

Commit 16e5a46

Browse files
committed
Updated Exprtk
1 parent 45b80ed commit 16e5a46

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

exprtk/readme.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2037,7 +2037,7 @@ associated types from the DEC.
20372037
The kinds of questions one can ask regarding the dependent entities
20382038
within an expression are as follows:
20392039

2040-
* What user defined or local variables, vectors or strings are used?
2040+
* What user defined variables, vectors or strings are used?
20412041
* What functions or custom user functions are used?
20422042
* Which variables, vectors or strings have values assigned to them?
20432043

@@ -2105,13 +2105,13 @@ associated assignments:
21052105
(1) x x := y + z
21062106
(2) x, y x += y += z
21072107
(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')
21092109
(5) None x + y + z
21102110

21112111

21122112
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
21152115
variables the modification will occur upon can only be known with
21162116
certainty at evaluation time and not beforehand, hence both are listed
21172117
as being candidates for assignment.
@@ -2483,7 +2483,7 @@ default USR. The following are some example expressions:
24832483
(2) sine(y / 2) - coz(3x)
24842484

24852485

2486-
The two expression above contain misspelt symbols (abz, sine, coz)
2486+
The two expressions above contain misspelt symbols (abz, sine, coz)
24872487
which if implied multiplications and default USR are enabled during
24882488
compilation will result in them being assumed to be valid 'variables',
24892489
which obviously is not the intended outcome by the user. A possible

0 commit comments

Comments
 (0)