diff options
author | Geoff Liu <cangming.liu@gmail.com> | 2015-03-09 00:01:17 -0600 |
---|---|---|
committer | Geoff Liu <cangming.liu@gmail.com> | 2015-03-09 00:01:17 -0600 |
commit | 104ffc36086cde565707c3df7d2ae335c3be55b8 (patch) | |
tree | d59e307a14807af13f2a2156a3affddb37739465 | |
parent | bb8342ca4cdf1ba294034d2ab1291ad171b273de (diff) | |
parent | da58d73ad0a257d0502554bb77d14e186a2eeee4 (diff) |
Merge pull request #993 from xuchunyang/patch-1
[tcl/en] Fix typos
-rwxr-xr-x | tcl.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tcl.html.markdown b/tcl.html.markdown index f2d92fcd..198f675e 100755 --- a/tcl.html.markdown +++ b/tcl.html.markdown @@ -169,7 +169,7 @@ namespace eval people { #The full name of a variable includes its enclosing namespace(s), delimited by two colons: -set greeting "Hello $people::person::name" +set greeting "Hello $people::person1::name" @@ -189,7 +189,7 @@ set greeting "Hello $people::person::name" namespace delete :: -# Because of name resolution behaviour, its safer to use the "variable" command to declare or to assign a value to a namespace. +# Because of name resolution behaviour, it's safer to use the "variable" command to declare or to assign a value to a namespace. namespace eval people { namespace eval person1 { variable name Neo |