From fe9ab9ebd277ebf037a8bea29387dffa7a2fe8ef Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Fri, 19 Apr 2024 09:20:01 +0200 Subject: [PATCH] Expr.adoc, corrected a typo --- doc/Expr.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Expr.adoc b/doc/Expr.adoc index 3483321..1028178 100644 --- a/doc/Expr.adoc +++ b/doc/Expr.adoc @@ -182,7 +182,7 @@ a=1; b=2; c=3; a+b+c // returns 6 === [blue]`but` operator [blue]`but` is an infixed operator. Its operands can be any type of expression. It evaluates the left expression first, then the right expression. The value of the right expression is the final result. Examples: [blue]`5 but 2` returns 2, [blue]`x=2*3 but x-1` returns 5. -[blue]`but` is very similar to [blue]`;`. The only difference is that [blue]`;` can't be used inside parenthesis [blue]`;(` and [blue]`)`. +[blue]`but` is very similar to [blue]`;`. The only difference is that [blue]`;` can't be used inside parenthesis [blue]`(` and [blue]`)`. === Assignment operator [blue]`=` The assignment operator [blue]`=` is used to define variable in the evaluation context or to change their value (see _ExprContext_).