diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-01 23:36:46 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-01 23:36:46 (GMT) |
commit | c7d4f0143c9004a2ad087ba1faf97eaec526c3e2 (patch) | |
tree | b14613647bccdf8360da6c3a755b0ab6d29b5279 /doc/join.n | |
parent | 8700b04b46fb89254c0ce1489142dd0a7bf68702 (diff) | |
download | tcl-c7d4f0143c9004a2ad087ba1faf97eaec526c3e2.zip tcl-c7d4f0143c9004a2ad087ba1faf97eaec526c3e2.tar.gz tcl-c7d4f0143c9004a2ad087ba1faf97eaec526c3e2.tar.bz2 |
Minor documentation improvements
Diffstat (limited to 'doc/join.n')
-rw-r--r-- | doc/join.n | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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" |