diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-26 22:58:22 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-26 22:58:22 (GMT) |
commit | 37d6f900991ec0280a7ecc776cd823f6cb1ab819 (patch) | |
tree | f91942c644762a33f2e9a63c0755443fb94935fd | |
parent | b0654427ca07b5611916baf69d3c05d14ef2441b (diff) | |
download | tcl-37d6f900991ec0280a7ecc776cd823f6cb1ab819.zip tcl-37d6f900991ec0280a7ecc776cd823f6cb1ab819.tar.gz tcl-37d6f900991ec0280a7ecc776cd823f6cb1ab819.tar.bz2 |
Revert changes in previous commit to clock.n and lassign.n
-rw-r--r-- | doc/clock.n | 8 | ||||
-rw-r--r-- | doc/lassign.n | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/clock.n b/doc/clock.n index 18f921c..a8c6d29 100644 --- a/doc/clock.n +++ b/doc/clock.n @@ -265,10 +265,10 @@ converts the given time to a calendar date and time of day. It then adds the requisite number of months or years, and reconverts the resulting date and time of day to an absolute time. .PP -If the resulting date is impossible because the month has not enough -days (for example, when adding 1 month to 31 January), the last day -of the month is substituted. Thus, adding 1 month to 31 January will -result in 28 February in a common year or 29 February in a leap year. +If the resulting date is impossible because the month has too few days +(for example, when adding 1 month to 31 January), the last day of the +month is substituted. Thus, adding 1 month to 31 January will result in +28 February in a common year or 29 February in a leap year. .PP The rules for handling anomalies relating to summer time and to the Gregorian calendar are the same when adding/subtracting months and diff --git a/doc/lassign.n b/doc/lassign.n index 2c57937..5620de6 100644 --- a/doc/lassign.n +++ b/doc/lassign.n @@ -25,7 +25,7 @@ unassigned elements is returned. .SH EXAMPLES .PP An illustration of how multiple assignment works, and what happens -when there are either not enough or too many elements. +when there are either too few or too many elements. .PP .CS \fBlassign\fR {a b c} x y z ;# Empty return |