summaryrefslogtreecommitdiffstats
path: root/doc/fcopy.n
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-03-02 08:49:12 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-03-02 08:49:12 (GMT)
commit8815f9f3c32c06e9f2d1d2b8ea69e1810988c5a4 (patch)
treef29c5c0c6331b03c26871392bc54d38fff2e3727 /doc/fcopy.n
parentc761f885ddfb0bfdc09e27db3399acb1f1b65dbd (diff)
downloadtcl-8815f9f3c32c06e9f2d1d2b8ea69e1810988c5a4.zip
tcl-8815f9f3c32c06e9f2d1d2b8ea69e1810988c5a4.tar.gz
tcl-8815f9f3c32c06e9f2d1d2b8ea69e1810988c5a4.tar.bz2
Eliminate exess spacings in many doc pages.
Diffstat (limited to 'doc/fcopy.n')
-rw-r--r--doc/fcopy.n10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/fcopy.n b/doc/fcopy.n
index 071896c..e5dd1d6 100644
--- a/doc/fcopy.n
+++ b/doc/fcopy.n
@@ -4,7 +4,7 @@
'\"
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-'\"
+'\"
.TH fcopy n 8.0 Tcl "Tcl Built-In Commands"
.so man.macros
.BS
@@ -23,9 +23,9 @@ avoid extra copies and to avoid buffering too much data in
main memory when copying large files to slow destinations like
network sockets.
.PP
-The \fBfcopy\fR
+The \fBfcopy\fR
command transfers data from \fIinchan\fR until end of file
-or \fIsize\fR bytes have been
+or \fIsize\fR bytes have been
transferred. If no \fB\-size\fR argument is given,
then the copy goes until end of file.
All the data read from \fIinchan\fR is copied to \fIoutchan\fR.
@@ -36,7 +36,7 @@ The \fB\-command\fR argument makes \fBfcopy\fR work in the background.
In this case it returns immediately and the \fIcallback\fR is invoked
later when the copy completes.
The \fIcallback\fR is called with
-one or two additional
+one or two additional
arguments that indicates how many bytes were written to \fIoutchan\fR.
If an error occurred during the background copy, the second argument is the
error string associated with the error.
@@ -109,7 +109,7 @@ fconfigure $out -translation binary
This second example shows how the callback gets
passed the number of bytes transferred.
It also uses vwait to put the application into the event loop.
-Of course, this simplified example could be done without the command
+Of course, this simplified example could be done without the command
callback.
.PP
.CS