summaryrefslogtreecommitdiffstats
path: root/doc/lappend.n
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lappend.n')
-rw-r--r--doc/lappend.n6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lappend.n b/doc/lappend.n
index 732370b..92f2394 100644
--- a/doc/lappend.n
+++ b/doc/lappend.n
@@ -6,7 +6,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: lappend.n,v 1.8 2004/05/18 20:59:24 dkf Exp $
+'\" RCS: @(#) $Id: lappend.n,v 1.9 2004/10/27 12:53:22 dkf Exp $
'\"
.so man.macros
.TH lappend n "" Tcl "Tcl Built-In Commands"
@@ -36,9 +36,9 @@ Using \fBlappend\fR to build up a list of numbers.
.CS
% set var 1
1
-% lappend var 2
+% \fBlappend\fR var 2
1 2
-% lappend var 3 4 5
+% \fBlappend\fR var 3 4 5
1 2 3 4 5
.CE