summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2016-10-04 18:48:17 (GMT)
committerdgp <dgp@users.sourceforge.net>2016-10-04 18:48:17 (GMT)
commit3e12c540390c4bf3f44b10bfcf6529ad998240be (patch)
tree877372618e50080046947ed94edb81f6f1b73ddd /doc
parent4a1f444c9f9f6eaa804c6c55e87ceb6bd54175ee (diff)
parenta629b0ba31444cfbdafc441e30d4a6df9b14126b (diff)
downloadtcl-3e12c540390c4bf3f44b10bfcf6529ad998240be.zip
tcl-3e12c540390c4bf3f44b10bfcf6529ad998240be.tar.gz
tcl-3e12c540390c4bf3f44b10bfcf6529ad998240be.tar.bz2
merge trunk
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 5712f66..f09065b 100644
--- a/doc/expr.n
+++ b/doc/expr.n
@@ -130,15 +130,15 @@ Exponentiation. Valid for any numeric operands.
Multiply, divide, remainder. None of these operators may be
applied to string operands, and remainder may be applied only
to integers.
-The remainder will always have the same sign as the divisor and
+The remainder always has the same sign as the divisor and
an absolute value smaller than the absolute value of the divisor.
.RS
.PP
When applied to integers, the division and remainder operators can be
considered to partition the number line into a sequence of equal-sized
adjacent non-overlapping pieces where each piece is the size of the divisor;
-the division result identifies which piece the divisor lay within, and the
-remainder result identifies where within that piece the divisor lay. A
+the division result identifies which piece the dividend lies within, and the
+remainder result identifies where within that piece the dividend lies. A
consequence of this is that the result of
.QW "-57 \fB/\fR 10"
is always -6, and the result of