diff options
author | Andre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org> | 2017-08-24 01:48:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-24 01:48:53 +0300 |
commit | 7fd4359c27dbcfe5fe6d44f38fb76883db18e8cc (patch) | |
tree | a431b59c622de2c0725f2bfc34f10f4ea3f62c89 /tcl.html.markdown | |
parent | 2694c89c3322b730b5635960e893323aa6524114 (diff) | |
parent | 182ae2272bc158a6e9ec0a450d2a73a13e839248 (diff) |
Merge pull request #2792 from hromojaro/tcl-es
[tcl/en] Fixing typos
Diffstat (limited to 'tcl.html.markdown')
-rw-r--r-- | tcl.html.markdown | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tcl.html.markdown b/tcl.html.markdown index 8e3158b0..40d9111a 100644 --- a/tcl.html.markdown +++ b/tcl.html.markdown @@ -105,7 +105,7 @@ set greeting $greeting[ incr i incr i ] -puts $greeting ;# The output is "Salutations3" +puts $greeting ;# The output is "Salutations3" # Every word in a command is a string, including the name of the routine, so # substitutions can be used on it as well. Given this variable @@ -422,8 +422,7 @@ eval {set name Neo} eval [list set greeting "Hello, $name"] -# Therefore, when using "eval", , use "list" to build -# up the desired command: +# Therefore, when using "eval", use "list" to build up the desired command: set command {set name} lappend command {Archibald Sorbisol} eval $command |