summaryrefslogtreecommitdiffstats
path: root/doc/lset.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2011-07-17 15:00:43 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2011-07-17 15:00:43 (GMT)
commit9f51e32c984e0ad2e812d241e588c492c4179cf8 (patch)
treec3920dbd3e235492a7b453af9a7f5cf5f080c734 /doc/lset.n
parentff87b46b5269cbd4def059244e47ec2db336e166 (diff)
downloadtcl-9f51e32c984e0ad2e812d241e588c492c4179cf8.zip
tcl-9f51e32c984e0ad2e812d241e588c492c4179cf8.tar.gz
tcl-9f51e32c984e0ad2e812d241e588c492c4179cf8.tar.bz2
Documentation improvements (small; some revision to parsing script) to improve
the quality of HTML doc builds.
Diffstat (limited to 'doc/lset.n')
-rwxr-xr-xdoc/lset.n8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lset.n b/doc/lset.n
index ec84e09..805de16 100755
--- a/doc/lset.n
+++ b/doc/lset.n
@@ -26,13 +26,13 @@ Finally, it accepts a new value for an element of \fIvarName\fR.
If no indices are presented, the command takes the form:
.PP
.CS
-lset varName newValue
+\fBlset\fR varName newValue
.CE
.PP
or
.PP
.CS
-lset varName {} newValue
+\fBlset\fR varName {} newValue
.CE
.PP
In this case, \fInewValue\fR replaces the old value of the variable
@@ -68,13 +68,13 @@ allowing the script to alter elements in sublists (or append elements
to sublists). The command,
.PP
.CS
-lset a 1 2 newValue
+\fBlset\fR a 1 2 newValue
.CE
.PP
or
.PP
.CS
-lset a {1 2} newValue
+\fBlset\fR a {1 2} newValue
.CE
.PP
replaces element 2 of sublist 1 with \fInewValue\fR.