summaryrefslogtreecommitdiffstats
path: root/doc/join.n
diff options
context:
space:
mode:
Diffstat (limited to 'doc/join.n')
-rw-r--r--doc/join.n8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/join.n b/doc/join.n
index d9fa0a1..bf26c44 100644
--- a/doc/join.n
+++ b/doc/join.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: join.n,v 1.4 2004/05/11 21:31:43 dkf Exp $
+'\" RCS: @(#) $Id: join.n,v 1.5 2004/10/27 12:53:22 dkf Exp $
'\"
.so man.macros
.TH join n "" Tcl "Tcl Built-In Commands"
@@ -28,14 +28,14 @@ The \fIjoinString\fR argument defaults to a space character.
Making a comma-separated list:
.CS
set data {1 2 3 4 5}
-join $data ", "
+\fBjoin\fR $data ", "
\fB=> 1, 2, 3, 4, 5\fR
.CE
-
+.PP
Using \fBjoin\fR to flatten a list by a single level:
.CS
set data {1 {2 3} 4 {5 {6 7} 8}}
-join $data
+\fBjoin\fR $data
\fB=> 1 2 3 4 5 {6 7} 8\fR
.CE