summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2007-01-29 16:50:32 (GMT)
committerdgp <dgp@noemail.net>2007-01-29 16:50:32 (GMT)
commit1a36ca867304cb949a6f4da844bd3fd8738bfc16 (patch)
treef94d4e50086f745910e12fe65f9f81c9d62130fa /doc
parente6ac603c9906ae9c18dc64fd8412ab7694bbedb2 (diff)
downloadtcl-1a36ca867304cb949a6f4da844bd3fd8738bfc16.zip
tcl-1a36ca867304cb949a6f4da844bd3fd8738bfc16.tar.gz
tcl-1a36ca867304cb949a6f4da844bd3fd8738bfc16.tar.bz2
* doc/fcopy.n: Typo fix. [Bug 1630627]
FossilOrigin-Name: ac61105d8a944bbb1f7db0dd890b89d6986b1507
Diffstat (limited to 'doc')
-rw-r--r--doc/fcopy.n4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/fcopy.n b/doc/fcopy.n
index 30b8dfe..bb0f534 100644
--- a/doc/fcopy.n
+++ b/doc/fcopy.n
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: fcopy.n,v 1.3 2001/05/19 16:59:04 andreas_kupries Exp $
+'\" RCS: @(#) $Id: fcopy.n,v 1.3.14.1 2007/01/29 16:50:35 dgp Exp $
'\"
.so man.macros
.TH fcopy n 8.0 Tcl "Tcl Built-In Commands"
@@ -115,7 +115,7 @@ in the command callback
proc CopyMore {in out chunk bytes {error {}}} {
global total done
incr total $bytes
- if {([string length $error] != 0) || [eof $in] {
+ if {([string length $error] != 0) || [eof $in]} {
set done $total
close $in
close $out