summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2019-06-10 19:06:47 (GMT)
committerdgp <dgp@users.sourceforge.net>2019-06-10 19:06:47 (GMT)
commitb4a301e0162fb14ebcca68f01ca685ce71e3bfc6 (patch)
tree23694dbd9dc7eac56d3ca37861b0a35e47f3c03e /doc
parent1217d3e0d3fc62309404d535dc374a4ee58be340 (diff)
parent6a3773f6119ffaee96382a12d282e033a6a0bf95 (diff)
downloadtcl-b4a301e0162fb14ebcca68f01ca685ce71e3bfc6.zip
tcl-b4a301e0162fb14ebcca68f01ca685ce71e3bfc6.tar.gz
tcl-b4a301e0162fb14ebcca68f01ca685ce71e3bfc6.tar.bz2
merge 8.7
Diffstat (limited to 'doc')
-rw-r--r--doc/expr.n6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/expr.n b/doc/expr.n
index a7939f8..67f9e0a 100644
--- a/doc/expr.n
+++ b/doc/expr.n
@@ -201,20 +201,20 @@ Bit-wise OR. Valid for integer operands.
\fB&&\fR
.
Logical AND. If both operands are true, the result is 1, or 0 otherwise.
-This operator evaluates lazily; it only evaluates its right-hand side if it
+This operator evaluates lazily; it only evaluates its second operand if it
must in order to determine its result.
.TP 20
\fB||\fR
.
Logical OR. If both operands are false, the result is 0, or 1 otherwise.
-This operator evaluates lazily; it only evaluates its right-hand side if it
+This operator evaluates lazily; it only evaluates its second operand if it
must in order to determine its result.
.TP 20
\fIx \fB?\fI y \fB:\fI z\fR
.
If-then-else, as in C. If \fIx\fR is false , the result is the value of
\fIy\fR. Otherwise the result is the value of \fIz\fR.
-This operator evaluates lazily; it only evaluates one of \fIy\fR or \fIz\fR.
+This operator evaluates lazily; it evaluates only one of \fIy\fR or \fIz\fR.
.PP
The exponentiation operator promotes types in the same way that the multiply
and divide operators do, and the result is is the same as the result of