aboutsummaryrefslogtreecommitdiff
path: root/jim_tcl.txt
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2015-05-18 19:52:32 +1000
committerSteve Bennett <steveb@workware.net.au>2015-05-18 19:53:34 +1000
commitadcb761134c80285073a2c4728ab545dec101ff2 (patch)
tree91170c9cc147ca550f2094dc322bf1b3064bd277 /jim_tcl.txt
parent0764d7362ee0a458901c51ee3623e77f91b41ff2 (diff)
downloadjimtcl-adcb761134c80285073a2c4728ab545dec101ff2.zip
jimtcl-adcb761134c80285073a2c4728ab545dec101ff2.tar.gz
jimtcl-adcb761134c80285073a2c4728ab545dec101ff2.tar.bz2
docs: minor typo with lassign
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim_tcl.txt')
-rw-r--r--jim_tcl.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/jim_tcl.txt b/jim_tcl.txt
index 6217678..fec2a4a 100644
--- a/jim_tcl.txt
+++ b/jim_tcl.txt
@@ -2848,8 +2848,8 @@ lassign
This command treats the value +'list'+ as a list and assigns successive elements from that list to
the variables given by the +'varName'+ arguments in order. If there are more variable names than
-list elements, the remaining variables are set to the empty string. If there are more list ele-
-ments than variables, a list of unassigned elements is returned.
+list elements, the remaining variables are set to the empty string. If there are more list elements
+than variables, a list of unassigned elements is returned.
jim> lassign {1 2 3} a b; puts a=$a,b=$b
3