summaryrefslogtreecommitdiffstats
path: root/doc/join.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2007-11-01 23:36:46 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2007-11-01 23:36:46 (GMT)
commitc7d4f0143c9004a2ad087ba1faf97eaec526c3e2 (patch)
treeb14613647bccdf8360da6c3a755b0ab6d29b5279 /doc/join.n
parent8700b04b46fb89254c0ce1489142dd0a7bf68702 (diff)
downloadtcl-c7d4f0143c9004a2ad087ba1faf97eaec526c3e2.zip
tcl-c7d4f0143c9004a2ad087ba1faf97eaec526c3e2.tar.gz
tcl-c7d4f0143c9004a2ad087ba1faf97eaec526c3e2.tar.bz2
Minor documentation improvements
Diffstat (limited to 'doc/join.n')
-rw-r--r--doc/join.n6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/join.n b/doc/join.n
index cdc8df8..fd03fc7 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.7 2007/10/26 20:11:53 dgp Exp $
+'\" RCS: @(#) $Id: join.n,v 1.8 2007/11/01 23:36:46 dkf Exp $
'\"
.so man.macros
.TH join n "" Tcl "Tcl Built-In Commands"
@@ -29,14 +29,14 @@ Making a comma-separated list:
.CS
set data {1 2 3 4 5}
\fBjoin\fR $data ", "
- \fB=> 1, 2, 3, 4, 5\fR
+ \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}}
\fBjoin\fR $data
- \fB=> 1 2 3 4 5 {6 7} 8\fR
+ \fB\(-> 1 2 3 4 5 {6 7} 8\fR
.CE
.SH "SEE ALSO"